【JAVA】为对象的属性设置内容,同时调用tell方法把内容输出

版权声明

博主:甜甜的大香瓜

声明:喝水不忘挖井人,转载请注明出处。

原文地址:http://blog.csdn.net/feilusia

联系方式:[email protected]


代码如下:

class Person{
String name;
int age;
public void tell(){
System.out.println("姓名:" + name + ",年龄:" + age);
}
}


public class ClassDemo03{
public static void main(String arg[]){
Person per = new Person();//注意!!这里要分配内存空间,不能写成“Person per = null;”
per.name = "张三";
per.age = 29;
per.tell();
}
}


运行结果:

姓名:张三,年龄:29

你可能感兴趣的:(【JAVA】为对象的属性设置内容,同时调用tell方法把内容输出)