C ++:说func()= 30的含义是什么

时间:2016-12-09 16:30:52

标签: c++

是什么意思
fun()=30;
count<<fun();

功能定义是:

int &fun()
{
    static int x = 10;
    return x;
}

1 个答案:

答案 0 :(得分:7)

int& fun();

fun()的返回类型是整数引用。

fun() = 30

将值30赋值给fun()返回值引用的整数。

哪个整数?

int &fun()
{
    static int x = 10; // <-- this one
    return x;
}