运行 ❯
获取您自己的
×
更改方向
更改主题,黑暗/浅色
转到 Spaces
#include <iostream> #include <list> using namespace std; int main() { list<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; cout << cars.empty(); // Outputs 0 (not empty) return 0; }
0