Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 NetBeans 编写我的 Java 代码。通常我可以在一些关键字上移动鼠标并按'Alt'+'F1'来调出关键字的javadoc。
但是对于 BufferedWriter,NetBeans 显示“找不到符号”,为什么?
代码编译没有错误,还是拒绝?如果您无法编译代码,请确保您拥有:
import java.io.BufferedWriter;
在代码的开头,否则 Netbeans 将无法确定令牌“BufferedWriter”表示哪个类,因此它无法确定哪个 Javadoc 属于该类。