• 2022-06-08
    class Employee{ private static int nextID = 1; private int id;}在Employee对象中,每个对象都有()字段,所有对象共享()字段
  • id# nextID

    举一反三

    内容

    • 0

      在员工管理系统中,查询表employee表中所有员工的姓名,字段:id(int),firstname(varchar),lastname(varchar),以下sql语句正确的是()。 A: Select firstname +’.’+ lastname as ‘name’ from employee B: Select firstname +’.’+ lastname from employee C: Select ‘name’= firstname +’.’+ lastname from employee D: Select firstname,lastname from employee

    • 1

      给出下列代码,如何使成员变量m被方法fun()直接访问?class Test { private int m; public static void fun( ) { ... }} A.将 private int m 改为protected int m B.将private int m 改为public int m C.将private int m改为static int m D.将private int m改为int m

    • 2

      给出如下代码: class Test{ private int m(){ ...... } public static void fun() { ...... } } 如何使成员函数m() 被函数fun()直接访问 A: 将private int m() 改为protected int m() B: 将private int m() 改为 public int m() C: 将private int m() 改为 static int m() D: 将private int m() 改为 int m()

    • 3

      下列定义类的格式,和创建对象格式正确的是() A: public class Cell{ private int row; int col; public void getCellInfo(){System.out.println(row+":"+col); }} B: 创建对象的格式:Cell c=new Cell(); C: public class Cell(){ private int row; int col; public void getCellInfo(){System.out.println(row+":"+col); }} D: 创建对象的格式:Cell c=new Cell;

    • 4

      (6-3)阅读程序,写出程序运行结果。 class Book{ private static int counter=0; private int id=1; private String name; public Book(String name) { this.name = name; counter++; this.id=this.id+8; } public static int getCounter() { return counter; } public int getID() { return this.id; } } public class BookDemo{ public static void main(String[] args) { Book b1=new Book("红楼梦"); Book b2=new Book("西游记"); Book b3=new Book("儒林外史"); System.out.println(b3.getCounter()*Book.getCounter()*b3.getID()); } }