第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

另外這種情況下如何設(shè)置參數(shù)缺省值呢?

另外這種情況下如何設(shè)置參數(shù)缺省值呢?

C++
aluckdog 2023-02-17 17:13:06
比如 template <typename T> void func(T a){...}, 我要根據(jù)參數(shù)a是數(shù)值還是字串采取不同行動,那如何可靠而簡單地判斷輸入的參數(shù)是數(shù)值還是字串? 
查看完整描述

2 回答

?
尚方寶劍之說

TA貢獻(xiàn)1788條經(jīng)驗(yàn) 獲得超4個贊

既然你已經(jīng)知道對每一種類型所采取的行動了,那就自己寫重載函數(shù)咯。

#include<iostream>
#include<string>
#include<vector>

using namespace std;
//3個action,不同的重載函數(shù)
void action( int var )
{
cout << "this is a integer" << endl;
}

void action( string& var )
{
cout << "this is a string" << endl;
}

template <typename Ty>
void action( vector<Ty> var )
{
cout << "this is a vector" << endl;
}

//根據(jù)模板推導(dǎo)出不同的類型而調(diào)用不同的action函數(shù)
template <typename T>
void func(T a)
{
action( a );
}

int main( void )
{
int x = 1;
string y = "xyz";
vector<char> z;
func(x);
func(y);
func(z);

return 0;
}



查看完整回答
反對 回復(fù) 2023-02-20
?
紅糖糍粑

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超6個贊

template <typename T> void func(T c);
templater <> void func(int c) {
// do sth with T = int;
}

templater <> void func(std::string c) {
// do sth with T = std::string;
}

查看完整回答
反對 回復(fù) 2023-02-20
  • 2 回答
  • 0 關(guān)注
  • 107 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號