• 2021-04-14
    设有泛型类的定义如下 class Test { } 则由该类创建对象时,使用正确的是?
  • Test x = new Test();

    内容

    • 0

      给出如下类定义: public class test { test(int k) { } }如果要创建一个该类的对象,正确的语句是: A: test obj1 = new test('5 '); B: test obj1 = new test(5); C: test obj1 = new test(3.4); D: test obj1 = new test();

    • 1

      考虑如下类:public class Test {int j,k;publ...}}以下哪些可正确创建Test对象?

    • 2

      类test的定义如下,$x是类test的对象,则4个选项中,正确的是( )。class test{const no='110';}$x=new test( ); A: echo $x.no; B: echo $x->no; C: echo test->no; D: echo test::no;

    • 3

      如下TestA类的定义: public class TestA { static int a=10; } 用该类创建2个对象:testA1和testA2,现将类变量(静态变量)a的数值变为100,则正确的方式是:( )。

    • 4

      设有下面的一个类定义: class AA { static void Show { System.out.println(“我喜欢Java!”); } } class BB { void Show { System.out.println(“我喜欢C++!”); } } 若已经使用AA类创建对象a和BB类创建对象b,则下面方法调用是正确的