0

我在我的 Gwt 项目中使用了String s="";, List<String>etc 并且我没有任何错误消息。

但是,当我使用时,String str=myTextBox.getText();eclipse 给出了一个错误,说“不能从 java.lang.String 转换为 String。所以我改为java.lang.String str=myTextBox.getText();然后错误消失了。

问题:我的项目中 String in和 String inString s="";之间有什么区别?List<String>java.lang.String str=myTextBox.getText();

那么 Gwt 使用与核心 Java 字符串不同的字符串吗?

谁能解释一下?

4

1 回答 1

0

GWT supports most of the core Java language syntax and semantics, but there are a few differences you will want to be aware of. try check this https://developers.google.com/web-toolkit/doc/latest/DevGuideCodingBasicsCompatibility

于 2013-05-04T05:50:26.713 回答