我是一名 Java 初学者,这是我的问题:我不明白为什么我的输出在实现我的 Print 程序时是“null”。据我了解我的代码,它应该显示:“ http://www.google.com ”。我尝试使用 StringBuilder,但我仍然有这个问题。有人可以给我一些帮助吗?谢谢
网址.java:
公共类 URL {
String url;
public void create(){
url = new String();
url+=("http://www.google.com");
}
public String geturl() {
return this.url;
}
}
打印.java:
公共类打印{
public static void main(String[] args) throws Exception {
URL link = new URL();
System.out.print(link.geturl());
}
}