文字和右值引用

发布于 2024-11-26 15:25:05 字数 217 浏览 0 评论 0原文

void test(int && val)
{
    val=4;
}

void main()
{  
    test(1);
    std::cin.ignore();    
}

int 是在调用 test 时创建的,还是在 C++ 中默认文字是 int 类型?

void test(int && val)
{
    val=4;
}

void main()
{  
    test(1);
    std::cin.ignore();    
}

Is a int is created when test is called or by default in c++ literals are int type?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独患者 2024-12-03 15:25:05

请注意,您的代码将使用 C++11 编译器进行编译。

当您传递整数文字时,默认情况下为 int 类型,除非您编写 1L,否则为 int 类型的临时对象创建绑定到函数参数的 。它就像以下初始化中的第一个

int &&      x = 1; //ok. valid in C++11 only.
int &       y = 1; //error, both in C++03, and C++11
const int & z = 1; //ok, both in C++03, and C++11

Note that your code would compile only with C++11 compiler.

When you pass an integral literal, which is by default of int type, unless you write 1L, a temporary object of type int is created which is bound to the parameter of the function. It's like the first from the following initializations:

int &&      x = 1; //ok. valid in C++11 only.
int &       y = 1; //error, both in C++03, and C++11
const int & z = 1; //ok, both in C++03, and C++11
猫九 2024-12-03 15:25:05

调用 test 时会创建一个值为 1 的 int。文字按其形式键入。例如,1 是 int,1.0 是 double,“1”是字符串。

An int with the value 1 is created when test is called. Literals are typed by their form. For example, 1 is an int, 1.0 is a double, "1" is a string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文