C++中 const int& a=int();语句怎么理解?

2025-01-05 11:26:26
推荐回答(2个)
回答(1):

就是 const int& a=0;

回答(2):

可以视为 const int a=int();