标签:现在 文件目录 需要 访问 其他 icc 构造 创建 不能
构造方法作用:1、初始化:成员变量public class Student{
//成员
private String name;
private String id;
public int count=0;
}
public Student(string name,string id){
this.name=name;
this.id=id;
}
publicc Student(){
}
public void setName(string name){
this.name=name;}
public string getName(){
return this.name;}
public void setId(string id){
this.id=id;}
public string getId(){
return this.id;}
public string toString(){
return“name:”+name+“,id:”+id;
}
主函数
package
public class Main{
public static void main(string args[]){
student student=new student("AA","1502001");
student student1=new student("BB","1502002");
system.out.println(student.tostring());
}
}
静态成员static用于输出计算,将动态变为静态,
普通方法和静态方法是否可以相互调用
静态方法不能指向非静态方法
静态方法可以在任意方法调用
标签:现在 文件目录 需要 访问 其他 icc 构造 创建 不能
原文地址:https://blog.51cto.com/14589620/2454620