System::String::operator+ मेथड

String::operator+(char_t) const method

स्ट्रिंग के अंत में कैरेक्टर जोड़ता है।

String System::String::operator+(char_t x) const
पैरामीटरप्रकारविवरण
xchar_tजोड़ने के लिए कैरेक्टर।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(const String&) const method

String concatenation operator.

String System::String::operator+(const String &str) const
पैरामीटरप्रकारविवरण
strconst String&String को वर्तमान के अंत में जोड़ने के लिए।

ReturnValue

संयुक्त स्ट्रिंग।

संबंधित देखें

String::operator+(const T&) const method

String concatenation with string literal or character string pointer.

template<typename T,std::enable_if_t< IsStringLiteral< T, char_t >::value > *> String System::String::operator+(const T &arg) const
पैरामीटरविवरण
Tस्ट्रिंग लिटरल या कैरेक्टर स्ट्रिंग पॉइंटर रूपों में से एक।
पैरामीटरप्रकारविवरण
argconst T&वर्तमान स्ट्रिंग के साथ संयोजित करने के लिए एंटिटी।

ReturnValue

संयुक्त स्ट्रिंग।

संबंधित देखें

String::operator+(const T&) const method

स्ट्रिंग के अंत में रेफ़रेंस टाइप ऑब्जेक्ट की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

template<typename T,std::enable_if_t< IsSmartPtr< T >::value > *> String System::String::operator+(const T &value) const
पैरामीटरविवरण
Tपॉइंटर प्रकार।
पैरामीटरप्रकारविवरण
valueconst T&Object को स्ट्रिंग में बदलने के लिए ToString() कॉल का उपयोग करके और वर्तमान स्ट्रिंग में जोड़ने के लिए।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(const T&) const method

स्ट्रिंग के अंत में वैल्यू टाइप ऑब्जेक्ट स्ट्रिंग प्रतिनिधित्व जोड़ता है।

template<typename T,std::enable_if_t<!IsSmartPtr< T >::value &&!std::is_scalar< T >::value &&!std::is_array< T >::value > *> String System::String::operator+(const T &value) const
पैरामीटरविवरण
TToString() को कॉल करने के लिए वैल्यू टाइप।
पैरामीटरप्रकारविवरण
valueconst T&Object को स्ट्रिंग में बदलने के लिए ToString() कॉल का उपयोग करके और वर्तमान स्ट्रिंग में जोड़ने के लिए।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(double) const method

स्ट्रिंग के अंत में फ्लोटिंग पॉइंट मान की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

String System::String::operator+(double d) const
पैरामीटरप्रकारविवरण
dडबलस्ट्रिंग में बदलने और जोड़ने के लिए वैल्यू।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(int) const method

स्ट्रिंग के अंत में पूर्णांक मान की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

String System::String::operator+(int i) const
पैरामीटरप्रकारविवरण
iintस्ट्रिंग में बदलने और जोड़ने के लिए पूर्णांक वैल्यू।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(int64_t) const method

स्ट्रिंग के अंत में पूर्णांक मान की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

String System::String::operator+(int64_t v) const
पैरामीटरप्रकारविवरण
vint64_tस्ट्रिंग में बदलने और जोड़ने के लिए वैल्यू।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(T) const method

स्ट्रिंग के अंत में बूलियन मान की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

template<typename T,std::enable_if_t< std::is_same< T, bool >::value > *> String System::String::operator+(T arg) const
पैरामीटरविवरण
Tस्ट्रिंग के साथ संयोजित करने के लिए वैल्यू टाइप। Must be bool
पैरामीटरप्रकारविवरण
argTBoolean को स्ट्रिंग में बदलने और जोड़ने के लिए वैल्यू।

ReturnValue

String concatenation result.

संबंधित देखें

String::operator+(uint32_t) const method

स्ट्रिंग के अंत में अनसाइन्ड पूर्णांक मान की स्ट्रिंग प्रतिनिधित्व जोड़ता है।

String System::String::operator+(uint32_t i) const
पैरामीटरप्रकारविवरण
iuint32_tस्ट्रिंग में बदलने और जोड़ने के लिए वैल्यू।

ReturnValue

String concatenation result.

संबंधित देखें