Objective-C 中的整型数组
所以我有这个:
int a[4] = { 0, 1, 2, 3 };
然后我想创建一个新的 int 数组:
int b[4];
使 b[] = a[] 的最简单方法是什么?
So I have this:
int a[4] = { 0, 1, 2, 3 };
And then I want to make a new int array:
int b[4];
What is the easiest way to make b[] = a[]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)