• ref / out 在大部分情況下是標(biāo)識的一部分!
你可以重載一個ref型參數(shù)和一個普通參數(shù)
你可以重載一個out型參數(shù)和一個普通參數(shù)
你不可以重載一個ref型參數(shù)和一個out型參數(shù)
sealed class Overloading
{
void Allowed( int parameter)
{ ... }
void Allowed(ref int parameter)
{ ... }
//正確,重載一個ref型參數(shù)和一個普通參數(shù)
void AlsoAllowed( int parameter)
{ ... }
void AlsoAllowed(out int parameter)
{ ... }
//正確,重載一個out型參數(shù)和一個普通參數(shù)
void NotAllowed(ref int parameter)
{ ... }
void NotAllowed(out int parameter)
{ ... }
//錯誤,不能重載一個ref型參數(shù)和一個out型參數(shù)
}
ref和out修飾符可以是一個函數(shù)的標(biāo)識。但是你不能同時重載ref和out型參數(shù)。ref和out修飾符在某種意義上是“安全的“,因為只有ref型實參才能傳遞給ref型函數(shù)參數(shù),只有out型實參才能傳遞給out型函數(shù)參數(shù)。但是,當(dāng)調(diào)用函數(shù)的時候,你會非常容易忘記ref和out修飾符,所以最好不要重載ref和out型參數(shù)。例如:
sealed class Overloading
{
public static void Example(int parameter)
{ ... }
public static void Example(ref int parameter)
{ ... }
static void Main()
{
int argument = 42;
Example(argument);//在這兒非常容易忘記ref修飾符
}
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。