数组赋值问题
2021-06-19 14:04
阅读:681
标签:pre include class div col stream 情况下 color 赋值 通常的情况下,我们会犯下面的错误: 上面的赋值方式,我们往往忽略了一点:本质上,数组的名字是表示地址常量!!!,而地址常量是不能被赋值的。 数组赋值问题 标签:pre include class div col stream 情况下 color 赋值 原文地址:https://www.cnblogs.com/shaonianpi/p/9690440.html
1 # include "iostream"
2 int main()
3 {
4 int num1[5]{1,2,3,4,5};
5 int num2[5];
6 num2 = num1;
7 }
评论
亲,登录后才可以留言!