刚开始用JDK8,遇到了控制台点问题,求指点
我在运行写的程序的时候,排除了程序里的bug,但是点击运行的时候控制台还是停留在上一次运行的结果,请问应该怎么操作package Teacher;
public class Teacher {
String name;
int age;
double salary;
String sex;
public Teacher() {
}
public Teacher(String name,int age,double salary,String sex){
this.name=name;
this.age=age;
this.salary=salary;
this.sex=sex;
}
void addSalary(){
this.salary=this.salary+5000;
}
}
class TeacherText {
public static void main(String[] args) {
Teacher teacher=new Teacher();
teacher.name="zdx";
teacher.age=20;
teacher.salary=8965;
teacher.sex="男";
System.out.println("年龄:"+teacher.age);
System.out.println("姓名:"+teacher.name);
System.out.println("性别:"+teacher.sex);
System.out.println("原有薪水:"+teacher.salary);
teacher.addSalary();
System.out.println("现在薪水:"+teacher.salary);
}
}
【找不到在哪传图片,抱歉啦】 本帖最后由 1239450295 于 2020-3-15 08:34 编辑
求解决 你用的什么ide?
你确定代码修改对了嚒 teacher.name="zdx";
teacher.age=20;
teacher.salary=8965;
teacher.sex="男";
这些都是写死的,要不你改下,在运行看看 你有没有保存呀,我记得你如果用eclipse的话需要手动保存才能运行新的代码,如果IDEA的可能会自动保存 对,可能你的eclipse 没有设置自动保存 百度一下是否设置了
页:
[1]