摘要: 数组作为函数参数传递的时候,会退化为指针,并不能得到数组的大小 一 void test1(int a[]) { cout << sizeof(a) << endl; } int main() { int a[4]; test1(a); } 输出结果是指针的大小,并不是数组的大小 二 void tes 阅读全文
posted @ 2021-03-17 16:06 秋来叶黄 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: https://zh.cppreference.com/w/cpp/language/zero_initialization https://en.cppreference.com/w/cpp/language/zero_initialization 零初始化 把一个对象的初始化值设置为0 说明 零 阅读全文
posted @ 2021-03-17 14:54 秋来叶黄 阅读(1538) 评论(0) 推荐(0) 编辑