我暂时无法实例化没有值的字符串数组,以便我可以在稍后阶段添加值
我的代码:
String [] temp;
temp = {"one","two","three"};
我收到此错误:
Illegal start of expression, ';' expected.
my code:
String [] temp;
temp = {"one","two","three"};
I get this error:
Illegal start of expression, ';' expected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大括号的使用方式只能用在数组声明语句中。 IE
Curly braces, the way you have used them, can only be used in array declaration statements. i.e.