学⽣的姓名,年龄,性别,班级及爱好IDEA代码//学⽣的姓名 ,年龄,性别,班级及爱好AIDE代码
package zy;
//学⽣类
class Person {
//属性:姓名年龄性别班级爱好
String name;//姓名
int age;//年龄
String sex;//性别
int  classNum;//班级
String hobby;//爱好
public void introduc(){
System.out.println("name="+name+"\tage="+age+"\tsex="+sex+"\tclassNum="+classNum+"\thobby="+hobby);
}
}
public class xuesheng {
姓名代码转换器百度public static void main(String[] args) {
Person person = new Person();
System.out.println("初始化变量前");
person.introduc();
person.name = "王⼀⼀";
person.age = 18;
person.sex = "男";
person.classNum = 21;
person.hobby = "跳跳绳";
System.out.println("\n初始化变量后");
person.introduc();
}
}
/*编译结果
初始化变量前
name=null    age=0    sex=null    classNum=0    hobby=null
初始化变量后
name=王⼀⼀    age=18    sex=男    classNum=21    hobby=跳跳绳
Process finished with exit code 0
*/

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。