System::String::operator== 메서드
String::operator==(const String&) const method
동등 비교 연산자.
bool System::String::operator==(const String &str) const
| 매개변수 | 형식 | 설명 |
|---|---|---|
| str | const String& | String와 현재 문자열을 비교하기 위해. |
ReturnValue
두 문자열이 모두 null이거나, 둘 다 null이 아니면서 일치하면 true, 그렇지 않으면 false.
또 보기
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator==(std::nullptr_t) const method
문자열이 null인지 확인합니다. IsNull() 호출과 동일한 논리를 적용합니다.
bool System::String::operator==(std::nullptr_t) const
ReturnValue
문자열이 null이면 true, 그렇지 않으면 false.
또 보기
- Class String
- Namespace System
- Library Aspose.Page for C++