void run()
public void run()
public void start()
void run(int priority)
public void run(int priority)
public void start(int priority)
第1题:
A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed. Which two are true? ()
第2题:
Which statements concerning the methods notify() and notifyAll() are true?
第3题:
A.Line 33 must be called within a try block.
B.The exception thrown by method1 in class A is not required to be caught.
C.The method declared on line 31 must be declared to throw a RuntimeException.
D.On line 5 of class A, the call to method2 of class B does not need to be placed in a try/catch block.
第4题:
Which methods from the String and StringBuffer classes modify the object on which they are called?()
第5题:
Which method must be defined by a class implementing the java.lang.Runnable interface? ()
第6题:
1. public class a { 2. public void method1() { 3. try { 4. B b=new b(); 5. b.method2(); 6. // more code here 7. } catch (TestException te) { 8. throw new RuntimeException(te); 9. } 10. } 11. } 1. public class b { 2. public void method2() throws TestException { 3. // more code here 4. } 5. } 1. public class TestException extends Exception { 2. } Given: 31. public void method() { 32. A a=new a(); 33. a.method1(); 34. } Which is true if a TestException is thrown on line 3 of class b?()
第7题:
What is a limitation of implementing uRPF?()
第8题:
Which two statements are true about the hashCode method?()
第9题:
It is desirable that a certain method within a certain class can only be accessed by classes that are defined within the same package as the class of the method. How can such restrictions be enforced?()
第10题:
A developer wants too use EL to invoke a function using S{my:bloof(“foof”)}. Which is always true?()