标签: c++
使用这种方式初始化变量之间是否有区别/优势?
float A = 0; float B = float(); float C(0); cout << A << endl << B << endl << C << endl
当然,这3种情况下的结果将相同:
0 0 0