将私有整数设置为另一个私有整数

发布于 2024-11-29 16:19:57 字数 287 浏览 1 评论 0原文

如何将一个私有整数的值设置为另一个? 即:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

国际总奸 2024-12-06 16:19:57
private Integer[] mTwo = mOne;

这将创建一个参考。如果您需要副本:

private Integer[] mTwo = mOne.clone();
private Integer[] mTwo = mOne;

This creates a reference. If you need a copy:

private Integer[] mTwo = mOne.clone();
把人绕傻吧 2024-12-06 16:19:57

这应该有效:

private Integer [] mTwo = mOne;

This should work:

private Integer [] mTwo = mOne;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文