黑马程序员技术交流社区
标题:
缺少返回语句的问题 请教
[打印本页]
作者:
jackymj
时间:
2016-6-10 17:47
标题:
缺少返回语句的问题 请教
缺少返回语句 哪里的问题?
class student04 {
public static void main(String[] args) {
student s = new student();
s.setName("张三");
s.setAge(23);
System.out.println(s.getName() +s.getAge());
}
}
class student
{
String name;
int age;
public student(){}
public student(String name,int age){
this.name = name;
this.age = age;
}
public void setName(String name){
this.name =name;
}
public String getName(){
return name;
}
public String setAge(int age){
this.age = age;
}
public int getAge(){
return age;
}
}
作者:
jackymj
时间:
2016-6-10 17:49
student04.java:27: 错误: 缺少返回语句
}
^
1 个错误
作者:
jackymj
时间:
2016-6-10 17:59
已找到问题 setAge里面 应该是无返回值类型
作者:
haojingwei310
时间:
2016-6-10 23:34
直接放eclipse,编译错误都会提示
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2