这样初始化变量 和 直接定义赋值时间一样吗??
#include <bits/stdc++.h> using namespace std; struct Int{ int x; Int(){ x = 998244353; } Int(int a){ x = a; } operator int(){ return x; } }; signed main(){ Int a; cout << a; return 0; }