【简答题】
预测程序运行结果 class Student{ private String name; public static String classNo; public Student(){} public Student(String name, String classNo){ this.name=name; this.classNO=classNo;} public static void show(){ System.out.println(“name=”+name+”classNo=”+classNo);}} public class StudentDemo{ public static void main(String []args){ Student s1=new Student(“ 张 ”,” 计 1”); Student s2=new Student(“ 李 ”,” 计 2”); s1.show();
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
收藏
举报
参考答案:
参考解析: