本篇內(nèi)容主要講解“C++怎么使用T*或T&參數(shù)”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“C++怎么使用T*或T&參數(shù)”吧!
創(chuàng)新互聯(lián)公司長(zhǎng)期為千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為鎮(zhèn)坪企業(yè)提供專業(yè)的網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè),鎮(zhèn)坪網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
對(duì)于通常的使用場(chǎng)景,應(yīng)該使用T*或T&參數(shù)而非智能指針。
Reason(原因)
傳遞一個(gè)智能指針來(lái)轉(zhuǎn)交或分享所有權(quán)的方式應(yīng)該只在希望表現(xiàn)所有權(quán)語(yǔ)義時(shí)使用(參見R.30)。通過(guò)智能指針傳遞參數(shù)限定了只有使用智能指針的調(diào)用者才能使用該函數(shù)。傳遞共享智能指針(例如,std::shared_ptr)必然包含運(yùn)行時(shí)代價(jià)。
譯者注:代價(jià)包括但并不限于管理引用計(jì)數(shù)
Example(示例)
// accepts any int*
void f(int*);
// can only accept ints for which you want to transfer ownership
void g(unique_ptr<int>);
// can only accept ints for which you are willing to share ownership
void g(shared_ptr<int>);
// doesn't change ownership, but requires a particular ownership of the caller
void h(const unique_ptr<int>&);
// accepts any int
void h(int&);
// calleevoid f(shared_ptr<widget>& w){ // ... use(*w); // only use of w -- the lifetime is not used at all // ...};
See further in R.30.
Note(注意)
We can catch dangling pointers statically, so we don't need to rely on resource management to avoid violations from dangling pointers.
我們可以靜態(tài)捕捉懸空指針,因此不需要依靠資源管理來(lái)避免發(fā)生懸空指針違反。
譯者注:懸空指針是指指向已經(jīng)釋放的內(nèi)存的指針;野指針是沒(méi)有初始化的指針。
See also:(參考)
Prefer T*
over T&
when "no argument" is a valid option
當(dāng)沒(méi)有參數(shù)是有效選項(xiàng)時(shí)應(yīng)該使用T*而不是T&
Smart pointer rule summary
智能指針使用概括
譯者注:反過(guò)來(lái),當(dāng)不希望參數(shù)為空是可以使用T&。
Flag a parameter of a smart pointer type (a type that overloads operator->
or operator*
) for which the ownership semantics are not used; that is
標(biāo)記不包含所有權(quán)語(yǔ)義的智能指針類型參數(shù)(重載了->和*運(yùn)算符的類型);即
copyable but never copied/moved from or movable but never moved
可復(fù)制但是從來(lái)沒(méi)有被復(fù)制或移動(dòng)或者可移動(dòng)卻從來(lái)沒(méi)有移動(dòng)
and that is never modified or passed along to another function that could do so.
內(nèi)容從未被修改或者沒(méi)有傳遞給可以修改其內(nèi)容的函數(shù)。
到此,相信大家對(duì)“C++怎么使用T*或T&參數(shù)”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
新聞標(biāo)題:C++怎么使用T*或T&參數(shù)
本文網(wǎng)址:http://jinyejixie.com/article28/gpgscp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司、網(wǎng)站導(dǎo)航、ChatGPT、商城網(wǎng)站、品牌網(wǎng)站建設(shè)、域名注冊(cè)
聲明:本網(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)