C++ array 数组函数

2021-02-13 03:20

阅读:597

标签:ios   bsp   数组   auto   并且   name   初始   clu   代码   

1.头文件:#include

2.和数组有什么区别?

更安全,建议用其代替数组!

3.用法:

arrays  代表着 s[19] 并且里面的元素是int型 

值得注意的是 array此时的数组并没有初始化

array 初始化的方法:

(1) 

#include
#include
#include
using namespace std;
main(){
    arrayint,3>m{0};
    for(auto i:m)
    cout" ";
    return 0;
}

结果为:

技术图片

 

 (2)

代码为:

#include
#include
#include
using namespace std;
main(){
    arrayint,3>m{};
    for(auto i:m)
    cout" ";
    return 0;
}

 

参考链接:

https://blog.csdn.net/zhengqijun_/article/details/81566109

C++ array 数组函数

标签:ios   bsp   数组   auto   并且   name   初始   clu   代码   

原文地址:https://www.cnblogs.com/miao-xixixi/p/12678053.html


评论


亲,登录后才可以留言!