数组和集合 / 数组

#include <iostream>
#include <vector>
using namespace std;

int array[] { 12345 };
//since C++20 or size() since C++17
int arLength = ssize(array);
//arLength is 5

vector<int> numbers { 123 };
long vecLength = numbers.size();
//vecLength is 3

cout << "arLength is " << arLength << endl;
cout << "vecLength is " << vecLength;