首頁 > 後端開發 > C++ > 如何使用'decltype”和可變參數模板函數來求和參數?

如何使用'decltype”和可變參數模板函數來求和參數?

Mary-Kate Olsen
發布: 2024-11-13 04:48:02
原創
847 人瀏覽過

How to Use `decltype` with Variadic Template Functions to Sum Arguments?

將decltype 與可變參數模板函數結合使用

當嘗試使用decltype 編寫返回具有適當類型的總和的可變參數模板函數時,它可能會遇到一些意想不到的問題。

問題

最初,宣告的函數沒有尾隨回傳型別。但是,當傳遞多個參數時,編譯器會將函數解釋為未定義。使用尾隨返回類型聲明函數可以解決兩個以上參數的問題,但會導致不同類型參數的返回類型不正確。

問題

decltype 是無法推斷兩個以上參數的t sum(p...) 的類型,因為可變參數函數模板僅在返回類型之後宣告

解決方法

為了避免decltype中的這種遞歸調用,可以使用自訂特徵類別。 sum_type 類別決定多個參數總和的類型,無需遞歸推導。

更新的程式碼

將程式中的decltype 替換為型別名sum_type::輸入如圖:

#include <iostream>
#include <type_traits>
using namespace std;

template<class T> typename std::add_rvalue_reference<T>::type val();

template<class T> struct id{typedef T type;};

template<class T, class... P> struct sum_type;
template<class T> struct sum_type<T> : id<T> {};
template<class T, class U, class... P> struct sum_type<T,U,P...>
: sum_type< decltype( val<const T&amp;>() + val<const U&amp;>() ), P... > {};
登入後複製

此方法傳回decltype((a b) c) 而非decltype(a (b c))。要獲得 decltype(a (b c)) 的更精確結果,請修改最後一個特化,如下所示:

template<class T, class U, class... P> struct sum_type<T,U,P...>
: id<decltype(
      val<T>()
    + val<typename sum_type<U,P...>::type>()
)>{};
登入後複製

以上是如何使用'decltype”和可變參數模板函數來求和參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板