运行 ❯
获得您
自己的网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <vector> using namespace std; int main() { vector<string> cars; cout << cars.empty() << "\n"; cars = {"Volvo", "BMW", "Ford", "Mazda"}; cout << cars.empty(); return 0; }
1
0