下面代码的输出是什么?() class A { &nbsp &nbsp...
发布于 2022-03-03 15:13:47
下面代码的输出是什么?()
class A { public: A(int32_t item) : content_(item) { } void Print() { printf("%d\n", content_) } public: int32_t content_ } int main() { A a = 1.3f a.Print() return 0 }
登录后免费查看答案
关注者
0
被浏览
20