這篇文章給大家分享的是有關(guān)C++中如何轉(zhuǎn)發(fā)一個(gè)函數(shù)調(diào)用的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
方法如下
首先你靈光一閃:
#define WARP_CALL(fun, ...) fun(__VA_ARGS__)
不我們并不喜歡宏,擴(kuò)展性太差了
template<class R, class T1, class T2, class T3> R warp_call(R(*fun)(T1, T2, T3), T1 a, T2 b, T3 c) { return fun(a, b, c); }
如果你寫出來(lái)上面這段代碼,你肯定是從C轉(zhuǎn)過(guò)來(lái)的,C++還沒用熟??紤]callable object和C++11 variadic template特性用上:
template<class Fun, class... Args> auto wrap_call(Fun f, Args... args) -> decltype(f(args...)) { return f(args...); }
加上移動(dòng)語(yǔ)義,返回值推導(dǎo):
template<class Fun, class... Args> auto wrap_call(Fun&& f, Args&&... args) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
auto返回值實(shí)際上會(huì)有參數(shù)被decay的問題,用decltype + 尾置返回值
template<class Fun, class... Args> auto wrap_call(Fun&& f, Args&&... args) -> decltype(std::forward<Fun>(f)(std::forward<Args>(args)...)) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
有了C++14,可以直接使用decltype(auto)
template<class Fun, class... Args> decltype(auto) wrap_call(Fun&& f, Args&&... args) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
別忘了noexcept
template<class Fun, class... Args> decltype(auto) wrap_call(Fun&& f, Args&&... args) noexcept(noexcept(std::forward<Fun>(f)(std::forward<Args>(args)...))) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
但是上面的函數(shù)不是SFINAE-friendly的,因?yàn)閐ecltype(auto)返回值的函數(shù)并不能直接從函數(shù)簽名獲得返回值,而對(duì)這個(gè)函數(shù)進(jìn)行返回值推導(dǎo),是可能產(chǎn)生hard error打斷SFINAE的。所以最好手動(dòng)寫返回值
template<class Fun, class... Args> auto wrap_call(Fun&& f, Args&&... args) noexcept(noexcept(std::forward<Fun>(f)(std::forward<Args>(args)...))) -> decltype(std::forward<Fun>(f)(std::forward<Args>(args)...)) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
我們還遺漏了啥?constexpr
template<class Fun, class... Args> constexpr auto wrap_call(Fun&& f, Args&&... args) noexcept(noexcept(std::forward<Fun>(f)(std::forward<Args>(args)...))) -> decltype(std::forward<Fun>(f)(std::forward<Args>(args)...)) { return std::forward<Fun>(f)(std::forward<Args>(args)...); }
感謝各位的閱讀!關(guān)于“C++中如何轉(zhuǎn)發(fā)一個(gè)函數(shù)調(diào)用”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站jinyejixie.com,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)頁(yè)名稱:C++中如何轉(zhuǎn)發(fā)一個(gè)函數(shù)調(diào)用-創(chuàng)新互聯(lián)
當(dāng)前地址:http://jinyejixie.com/article38/dicgsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、企業(yè)建站、網(wǎng)站設(shè)計(jì)公司、域名注冊(cè)、App設(shè)計(jì)、手機(jī)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容