C++学习心得:求数组的元素个数
一、非参数数组可以使用sizeof(a)/sizeof(a[0])或sizeof(a)/sizeof(int)来获取元素个数。#include <iostream>using namespace std;int a[] = {1, 2, 3};int main(){ int b[] = {1, 2, 3}; cout << sizeof(a) / sizeof(int) << endl; // 3