对于最初由gc4所引用的对象,该对象在如下程序中的什么地方变得适合于垃圾收集?
- public class GCDemo{
- public static void main(String[] args){
- String gc1;
- String gc2="this name is gc2";
- String gc3="this name is gc3";
- String gc4=new String((args.length>0)?" " + args[0] + ".":"<no arguments>");
- gc1=gc4;
- gc4=null;
- gc1=gc2+gc1+gc3;
- gc2=null;
- System.out.println(gc1);
- gc1=null;
- gc3=null;
- args=null;
- }
- }
复制代码
A.从标签为9的那一行以后
B.从标签为10的那一行以后
C.从标签为11的那一行以后
D.从标签为13的那一行以后
E.从标签为14的那一行以后
F.从标签为15的那一行以后
|