编程语言
首页 > 编程语言> > java 构造方法

java 构造方法

作者:互联网

构造方法

特点

class B{
    public B(){   //无参构造方法
    }


    public B(int a,int b){   //有参构造方法
    }
}
public class Cellphone {
    
    /*public Cellphone() {
        System.out.println("智能手机的默认语言为英文");
    }
    
    public Cellphone(String defaultLanguage) {
        System.out.println("将智能手机的默认语言设置为" + defaultLanguage);
    }

    public static void main(String[] args) {
        Cellphone cellphone1 = new Cellphone();
        Cellphone cellphone2 = new Cellphone("中文");
    }*/
    public static void main(String[] args) {
        String lan = "中文";
        Cellphone cp = new Cellphone();
        Cellphone cp2 = new Cellphone(lan);

    }

    public Cellphone(String lan){
        System.out.println("智能手机的语言可以设置为:"+lan);
    }

    public Cellphone(){
        System.out.println("智能手机的默认语言为英文");
    }



}

 

标签:Cellphone,java,String,构造方法,System,public,out
来源: https://www.cnblogs.com/jxba/p/16455837.html