模板參數推導和使用者定義的轉換
在C 模板程式設計中,常見的任務是將一種類型的值傳遞給需要不同類型參數的模板函數。為了實現這一點,編譯器提供了模板參數推導(TAD),它可以根據實際參數的類型自動推斷模板參數。
模板參數推導的限制
但是,TAD 也有限制。一個限制是它不考慮使用者定義的轉換。這意味著,如果您有從一種類型到另一種類型的使用者定義轉換,TAD 將不會套用該轉換來推斷模板參數。
案例研究
考慮以下程式碼片段:
<code class="cpp">template<typename Dtype> class Scalar{ public: Scalar(Dtype v) : value_(v){} private: Dtype value_; }; template<typename Dtype> void func(int a, Scalar<Dtype> b){ cout << "ok" <<endl; } int main(){ int a = 1; func(a, 2); // Error }
在這段程式碼中,我們有一個範本函數,它接受兩個參數:一個整數a 和一個Dtype 類型的標量物件。在 main 函數中,我們嘗試透過傳遞整數 a 和整數 2 來呼叫 func。但是,這失敗並出現編譯錯誤:
test.cpp: In function ‘int main()’: test.cpp:32:12: error: no matching function for call to ‘func(int&, int)’ func(a, 2); ^ test.cpp:32:12: note: candidate is: test.cpp:25:6: note: template<class Dtype> void func(int, Scalar<Dtype>) void func(int a, Scalar<Dtype> b){ ^ test.cpp:25:6: note: template argument deduction/substitution failed: test.cpp:32:12: note: mismatched types ‘Scalar<Dtype>’ and ‘int’ func(a, 2);</code>
為什麼TAD 失敗
失敗的原因是TAD 無法應用從int 到Scalar
以上是為什麼使用者定義的轉換時模板參數推導失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!