黑马程序员技术交流社区

标题: 学生面向对象 [打印本页]

作者: huizhong    时间: 2016-7-5 23:53
标题: 学生面向对象
class Student_Test1 {
        public static void main(String[] args) {
                print(10);
                Student s = new Student();
                print(s);
        }
        public static void print(int x) {
                System.out.println(x);
        }
        public static void print(Student stu) {
                stu.name = "张三";
                stu.age = 120;
                stu.speak();
        }
}
class Student {
        String name;
        int age;
        public void speak() {
                System.out.println(name+"..."+age);
        }
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2