欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

方法的形式参数是类名的时候如何调用

程序员文章站 2023-11-03 17:47:58
举例方法的形式参数是类名的调用 结果: ......

 

举例方法的形式参数是类名的调用

class hello2 {
    public static void main(string[] args) {
        student s = new student();
        print(s);
    }


    public static void print(student stu) {
        stu.name = "张三";
        stu.age = 23;
        stu.speak();
    }
}


class student
{
    string name;
    int age;

    public void speak() {
        system.out.println(name + "..." + age);
    }
}

 

结果:

方法的形式参数是类名的时候如何调用