// Kotlin 类classUser(valname:String){varage:Int=0} 1. 2. 3. 4. 当您想在 Java 中访问User类时,可以使用如下方法: Useruser=newUser("Alice");user.setAge(25);// 使用 setter 方法intage=user.getAge();// 使用 getter 方法 1. 2. 3. 2. Kotlin 的非空类型 Kotlin 中引入了非空类型的...
你有三个Student的构造函数,你全部写成了方法(因为你在前面加了void)public void Student(String name, String addr, char sex, int age, int math,int english) {} public void Student(int math, int english) {} public void Student() {} 正确的写法是 public Student(String name, String ...
private int age; //私有仅仅是封装的一种最小体现形式, //提供一个访问方式,get or set。//将访问加上一个控制,//提高安全性 private String name; public void setAge(int age)//在提供访问私有变量的方式同时加入限制条件。0-120逻辑判断等语句,提高代码的健壮性 { if (age>=0 && age<=120 ) //...
p.Setage = (34);s.Setname = ("libeibei");s.Setage = (26);s.Setschool = ("北京大学");这里有问题。①Setname 改成SetName(驼峰原则)②“=”去掉,“=”是赋值的意思,这最终情况,不需要“=”
1.如果你有IO 这么一个类 , 就看看你对应import 位置 应该是放哪里 , 然后把IO 对应编译完的class 文件放那里就好了 2.如果你没有IO 这么一个类, 自己定义, 顺便把里面对应的 static 方法readDouble 实现了, 然后随便找个位置, 把class 文件import 进去 3.如果你有IO 这个类, 但这个类...
正确写法是:animal a = new cat();区别在于animal.a是执行animal类的a方法 而animal a是类型为animal的变量, 变量名为a 如果满意请采纳~帮你修改了一下:abstract class animal { int age;String name;public animal() { } public animal(int age, String name) { this.age = age;this.name...
boolean setStudentAge(int newAge){ if(newAge>0 && newAge<130){ studentAge=newAge;return true;} else { System.out.println("非法学生年龄!");return false;} } Student(String id,int clsId,char gender,String name,int age){ studenId=new String(id);classId=clsId;studentName=new...
这个情况发生在 Java 代码尝试在非静态类中调用非静态方法的时候。例如下述代码: class Sample{ private int age; public void setAge(int a) { age=a; } public int getAge() { return age; } public static void main(String args[]) { System.out.println('Age is:'+ getAge()); }} 将会返回下...
你的TypeTest类中的getEye()方法打成了setEye(),把TypeTest类中 public String setEye(){ return eye;} 改成 public String getEye(){ return eye;} 就行了。还有你的Test类中,System.out.println(t.getEye());System.out.println(t.getAge());应该改成 System.out.println(tt.getEye(...
你的getName()方法返回值类型应该是String,而你写的是void,无返回值类型,而且关于属性取得的getter方法是不应该传参数进去的,希望对楼主有帮助~~~