import java.util.Properties;
public class Pavan {
Properties props = new Properties();
(X) String message = props.getProperty("message");
String name = message;
public static void main(String args[]) {
Pavan k = new Pavan();
}
}
你好 ,
这是我的示例程序。我正在使用 Eclipse IDE 3.6 版本。
我可以在方法中放置断点(在这种情况下它是主要方法)这里我的问题是,我不能在 (X) 字符串消息行放置断点吗?
请告诉我,提前谢谢??