package com.imoocTest;
class Duo{
String name;
String sex;
int age;
public void study(){
System.out.println(name+"在学习");
}
public void introduce(){
System.out.println("我叫"+name+",性别"+sex+",年龄"+age);
}
}
public class Student{
public static void main(String[] args) {
Duo student=new Duo();
student.name="张三";
student.sex="男";
student.age=10;
}
}
新人求教,代码啥的eclipse未报错,但是consoles里面啥都没有。
7 回答
王紫依
TA贡献1条经验 获得超0个赞
你的向控制台输出的语句在你定义的两个方法study()和introduce()里,只有调用这两个方法才会有输出。而你在main方法里只是给类的属性赋值,并没有调用任何一个方法,自然就不会向consoles输出任何内容了。
添加回答
举报
0/150
提交
取消