久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

錯誤:無法將“int&"類型的非常量左值引用

Error: cannot bind non-const lvalue reference of type ‘intamp;’ to an rvalue of type ‘int’(錯誤:無法將“int類型的非常量左值引用綁定到“int類型的右值)
本文介紹了錯誤:無法將“int&"類型的非常量左值引用綁定到“int"類型的右值的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我需要創建一個 Bar 對象,它有一個私有對象 Foo f.

I need to create a Bar object, which has a private object Foo f.

但是Foo對象參數的值應該通過特定的方法int genValue()來傳遞.

However, the value of Foo object parameter should be passed by the specific method int genValue().

如果我在構造函數作用域 Bar(){...} 中初始化 f,編譯器會大喊錯誤,就像沒有構造函數 Foo().

If I initialize f in the constructor scope Bar(){...}, the compiler yell error, something like there is no constructor Foo().

如果我像這樣構造Bar(): f(genValue()),編譯器會報錯:

If I construct like this Bar(): f(genValue()), the compiler yells the error:

test.cpp: In constructor ‘Bar::Bar()’:
test.cpp:16:19: error: cannot bind non-const lvalue reference of type ‘int&’ to an rvalue of type ‘int’
 Bar(): f(genValue()){    
            ~~~~~~~~^~
test.cpp:7:2: note:   initializing argument 1 of ‘Foo::Foo(int&)’    
 Foo(int &x) {    
 ^~~

示例代碼:

class Foo {
public:
    Foo(int &x) {
        this->x = x;
    }
private:
    int x;
};

class Bar {
public:
    Bar(): f(genValue()){
    }
private:
    Foo f;

    int genValue(){
        int x;
        // do something ...
        x = 1;
        return x;
    }
};

int main() {

    Bar bar ();

    return 0;
}

如果我不想修改 Foo 類并且它的參數值應該從 genValue() 傳遞,我該如何解決這個問題?而且,我不想使用純指針 (*),但使用智能指針的解決方案是可以的!

How can I fix the problem, if I don't want to modify Foo class and its argument value should be passed from genValue()? And, I don't want to use pure pointer (*), but a solution with smart pointer is okay!

推薦答案

const 引用參數,例如int&,只能引用一個左值",這是一個命名變量.

A non-const reference parameter, such as an int&, can only refer to an "lvalue," which is a named variable.

auto takes_nonconst_reference = [](int&){};
auto takes_const_reference = [](const int&){};
auto takes_value = [](int){};
auto returns_int = []{return 42;};

int foo = 1;

// OK
takes_nonconst_reference(foo);
takes_const_reference(foo);
takes_const_reference(returns_int());
takes_value(foo);
takes_value(returns_int());

// compilation error, value returned from a function is not a named variable
takes_nonconst_reference(returns_int());

在這種特殊情況下,由于您的類存儲了構造函數參數的副本,您應該按值傳遞它(int,而不是 int&const int&).

In this particular case, since your class is storing a copy of the constructor parameter, you should pass it by value (int, not int& nor const int&).

這篇關于錯誤:無法將“int&"類型的非常量左值引用綁定到“int"類型的右值的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Assertion failed (size.widthgt;0 amp;amp; size.heightgt;0)(斷言失敗(size.width0 amp;amp; size.height0))
Rotate an image in C++ without using OpenCV functions(在 C++ 中旋轉圖像而不使用 OpenCV 函數)
OpenCV: process every frame(OpenCV:處理每一幀)
Why can#39;t I open avi video in openCV?(為什么我不能在 openCV 中打開 avi 視頻?)
OpenCV unable to set up SVM Parameters(OpenCV 無法設置 SVM 參數)
Convert a single color with cvtColor(使用 cvtColor 轉換單一顏色)
主站蜘蛛池模板: 成人影| 免费h片| 国产寡妇亲子伦一区二区三区四区 | 国产一区二三区 | 亚洲国产成人av | 日本不卡在线视频 | 国产免费黄色 | 免费看大片a| 三级黄色片网站 | 欧美大片91| 国产精品一二三四 | 人人插人人射 | 国内自拍偷拍 | 成人看片网 | 伊人av综合| 国产精品美女久久 | 可以看毛片的网站 | 中文字幕在线日韩 | 国产在线观看网站 | 麻豆精品久久 | 激情小说图片视频 | 中文字幕免费视频 | 性视频在线 | 日韩精品免费观看 | 少妇精品视频 | 欧美性生交xxxxx | 久久日av | 日韩理论视频 | 国产综合久久 | 成人女同在线观看 | 免费国产黄色 | 一级特黄色片 | 91们嫩草伦理 | a级片免费在线观看 | 欧美一区二区免费 | 在线观看av不卡 | 精品视频一区二区三区 | 婷婷色在线 | 日本福利视频 | 成人在线观看网站 | 国产乱码一区二区三区 |