执行下面的代码后,输出结果为( )。class test{public $data;}Sx=new test();$x->data=100;$y=$x;$y->data=10;echo $x->data;
A: 100
B: 10
C: 0
D: null
A: 100
B: 10
C: 0
D: null
举一反三
- 对于 int x=10, y=100; 以下逻辑表达式的值为0的是( )。 A: ( x > 100 | | y < 10 ) && y == 100 B: ( x > 0 && y > 0 ) | | x < 100 C: ( x > 10 | | y > 10 ) && x == 10 D: x > 100 | | y < 10 | | y > 10
- 将本地数据库服务器上的数据库navy2的test表导出到脚本(/data/test.sql)的正确语句是 A: mysqldump navy2 test > /data/test.sql B: mysql navy2 test >/data/test.sql C: output navy2 test > /data/test.sql D: navy2 test > /data/test.sql
- 执行下面代码的输出结果是( )。[br][/br]class test:[br][/br] __data=0[br][/br]a=test() __data=10[br][/br]a._test__data=20[br][/br]test.__data=30[br][/br]print(test._test__data) A: 0 B: 10 C: 20 D: 30
- 下列选项中,用于存储数据库文件的路径是( )。 A: 【data】->【databases】 B: 【data】->【data】 C: 【data】->【data】->【项目包名全路径】->【databases】 D: 【data】->【data】->【项目包名全路径】
- (6-6)请阅读程序,写出程序运行结果。 class Test{ static int x=10; int y=99; { y=y+10; } static { x=x+5; } { y=y+10; } static { x=x+5; } public Test() {//构造方法 x=x+5; } { System.out.println(x*y); } } public class Demo11 { public static void main(String[] args) { Test t1=new Test(); Test t2=new Test(); } }