java基础训练Day1
1、List、Set、Map是否都继承自collection接口?
答:不是。
题解:
2、下面返回true的是?
public class Square {
long width;
public Square(long l) {
width = l;
}
public static void main(String arg[]) {
Square a, b, c; //在栈上分配了三个内存a,b,c
a = new Square(42L); //在堆上分配了一块新内存,里面包含了自己的成员变量,值为42L,然后在stack栈中的a指向这块内存
b = new Square(42L);
c = b; //stack中的c也指向b所指向的内存
long s = 42L;
}
}
A.a==b
B.b==c
答:B
题解:
3、
java基础训练Day1最先出现在Python成神之路。
共有 0 条评论