在Java中,如果需要在线程内部获取当前线程的引用,并且该线程是通过实现Runnable接口创建的,应该使用哪个方法? A. this B. super C. Thread.currentThread() D. getThread() 答案解析 当线程通过实现Runnable接口创建时,无法直接通过this关键字获取当前线程的引用,必须使用Thread.currentThread()方法才能获取当前线程的引用。 正确答案:C