标签:main esc code 抽象 并且 sys oid 调用 col
1.类是对象的抽象。类具有共有的属性和方法(操作,行为),属性一般是静态的,
2.对象是一类事物的实例,可以调用类里面的方法和属性,并且修改里面的内容;例子如下:
public class Student {//Student共有的属性 //属性 String name; int age; double height; double weight; boolean sex; String descp; String stuNum;//学号 //操作 (方法) public void doHomework(){ System.out.println("做作业"); } public void daKaz(){ System.out.println("打卡"); } public static void main(String []args){ Student student=new Student();//构造一个对象 student.name="张三"; student.age=13; Student student1=new Student();//定义另一个对象 student1.weight=32.2;//修改属性 student1.doHomework();//调用方法 } }
标签:main esc code 抽象 并且 sys oid 调用 col
原文地址:http://www.cnblogs.com/tangdeqiang/p/7573572.html