多项选择题
Which statements describe guaranteed behavior of the garbage collection and finalization mechanisms?()
A.Objects are deleted when they can no longer be accessed through any reference.
B.The finalize() method will eventually be called on every object.
C.The finalize() method will never be called more than once on an object.
D.An object will not be garbage collected as long as it is possible for an active part of the program to access it through a reference.
E.The garbage collector will use a mark and sweep algorithm.
相关考题
-
多项选择题
Whichstatementsconcerningthevalueofamembervariablearetrue,whennoexplicitassignmentshavebeenmade?()
A.The value of an int is undetermined.
B.The value of all numeric types is zero.
C.The compiler may issue an error if the variable is used before it is initialized.
D.The value of a String variable is "" (empty string).
E.The value of all object variables is null. -
多项选择题
Which statements concerning the relationships between the following classes are true?() class Foo { int num; Baz comp = new Baz(); } class Bar { boolean flag; } class Baz extends Foo { Bar thing = new Bar(); double limit; }
A.A Bar is a Baz.
B.A Foo has a Bar.
C.A Baz is a Foo.
D.A Foo is a Baz.
E.A Baz has a Bar. -
多项选择题
Giventwocollectionobjectsreferencedbycol1andcol2,whichofthesestatementsaretrue?()
A.The operation col1.retainAll(col2) will not modify the col1 object.
B.The operation col1.removeAll(col2) will not modify the col2 object.
C.The operation col1.addAll(col2) will return a new collection object, containing elements from both col1 and col2.
D.The operation col1.containsAll(Col2) will not modify the col1 object.
