将私有整数设置为另一个私有整数
如何将一个私有整数的值设置为另一个? 即:
private Integer [] mOne = {R.string.1, R.string.2};
是-->
private Integer [] mTwo = {Integer mOne[]};
但该代码不起作用。重点是 mTwo = {R.string.1,R.string.2} 无需明确编写...
我知道我想说什么,只是不知道怎么说!感谢您的帮助
How do you set the value of one private integer to another?
i.e:
private Integer [] mOne = {R.string.1, R.string.2};
to be-->
private Integer [] mTwo = {Integer mOne[]};
except that code doesn't work. the point being to have mTwo = {R.string.1,R.string.2} without having to explicitly write that...
I know what I want to say, just don't know how to say it! thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将创建一个参考。如果您需要副本:
This creates a reference. If you need a copy:
这应该有效:
This should work: