其他分享
首页 > 其他分享> > 2021-05-23

2021-05-23

作者:互联网

一.类的定义与使用

class 类名称 {
         属性 (变量) ;
         行为 (方法) ;
}

类属于一种数据类型,要依靠对象使用

类名称 对象名称 = new 类名称 () ;
或
类名称 对象名称 = null ;
对象名称 = new 类名称 () ;

例如:

 class Fruit{
    String name;
    String taste;
    public void get() {
        System.out.println(name + "很好吃"+"它是"+ taste+"买它,买它");
    }
}
public class  testfruit{
        public static void main(String args[]) {
            Fruit fruit= new Fruit() ;// 声明并实例化对象
            fruit.name = "苹果" ;//操作属性内容
            fruit.taste = "甜的";//操作属性内容
            fruit.get() ;//调用类中的get()方法
        }
}

二.

标签:String,05,taste,23,Fruit,fruit,名称,new,2021
来源: https://blog.csdn.net/m0_51709778/article/details/117185724