<memory>
運算子
operator!=
測試物件是否不相等。
template <class Type, class Other>
bool operator!=(
const allocator<Type>& left,
const allocator<Other>& right) throw();
template <class T, class Del1, class U, class Del2>
bool operator!=(
const unique_ptr<T, Del1>& left,
const unique_ptr<U&, Del2>& right);
template <class Ty1, class Ty2>
bool operator!=(
const shared_ptr<Ty1>& left,
const shared_ptr<Ty2>& right);
參數
left
要測試是否不相等的物件之一。
right
要測試是否不相等的物件之一。
Ty1
左側共用指標所控制的類型。
Ty2
右側共用指標所控制的類型。
傳回值
true
如果物件不相等,則為 ; false
如果物件相等,則為 。
備註
第一個範本運算子會傳回 false。 (所有的預設配置器相等)。
第二個和第三個範本運算子會傳回 !(left == right)
。
範例
第一個程式代碼範例顯示比較配置器對象的結果。
// memory_op_me.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>
using namespace std;
int main( )
{
allocator<double> Alloc;
vector <char>:: allocator_type v1Alloc;
if ( Alloc != v1Alloc )
cout << "The allocator objects Alloc & v1Alloc not are equal."
<< endl;
else
cout << "The allocator objects Alloc & v1Alloc are equal."
<< endl;
}
The allocator objects Alloc & v1Alloc are equal.
下一個程式代碼範例會比較共享指標與設定的物件:
// std__memory__operator_ne.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0(new int(0));
std::shared_ptr<int> sp1(new int(0));
std::cout << "sp0 != sp0 == " << std::boolalpha
<< (sp0 != sp0) << std::endl;
std::cout << "sp0 != sp1 == " << std::boolalpha
<< (sp0 != sp1) << std::endl;
return (0);
}
sp0 != sp0 == false
sp0 != sp1 == true
operator==
測試物件是否相等。
template <class Type, class Other>
bool operator==(
const allocator<Type>& left,
const allocator<Other>& right) throw();
template <class Ty1, class Del1, class Ty2, class Del2>
bool operator==(
const unique_ptr<Ty1, Del1>& left,
const unique_ptr<Ty2, Del2>& right);
template <class Ty1, class Ty2>
bool operator==(
const shared_ptr<Ty1>& left;,
const shared_ptr<Ty2>& right);
參數
left
要測試是否相等的其中一個物件。
right
要測試是否相等的其中一個物件。
Ty1
左側共用指標所控制的類型。
Ty2
右側共用指標所控制的類型。
傳回值
如果物件不相等,則為 true
;如果物件相等,則為 false
。
備註
第一個範本運算子會傳回 true。 (所有的預設配置器相等)。
第二個和第三個範本運算子會傳回 left.get() == right.get()
。
範例
第一個程式代碼範例顯示以不同方式比較配置器對象的結果。
// memory_op_eq.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>
using namespace std;
int main( )
{
allocator<char> Alloc;
vector <int>:: allocator_type v1Alloc;
allocator<char> cAlloc(Alloc);
allocator<int> cv1Alloc(v1Alloc);
if ( cv1Alloc == v1Alloc )
cout << "The allocator objects cv1Alloc & v1Alloc are equal."
<< endl;
else
cout << "The allocator objects cv1Alloc & v1Alloc are not equal."
<< endl;
if ( cAlloc == Alloc )
cout << "The allocator objects cAlloc & Alloc are equal."
<< endl;
else
cout << "The allocator objects cAlloc & Alloc are not equal."
<< endl;
}
The allocator objects cv1Alloc & v1Alloc are equal.
The allocator objects cAlloc & Alloc are equal.
下一個程式代碼範例會比較共享指標與設定的物件:
// std__memory__operator_eq.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0(new int(0));
std::shared_ptr<int> sp1(new int(0));
std::cout << "sp0 == sp0 == " << std::boolalpha
<< (sp0 == sp0) << std::endl;
std::cout << "sp0 == sp1 == " << std::boolalpha
<< (sp0 == sp1) << std::endl;
return (0);
}
sp0 == sp0 == true
sp0 == sp1 == false
operator>=
測試一個物件是否大於或等於第二個物件。
template <class T, class Del1, class U, class Del2>
bool operator>=(
const unique_ptr<T, Del1>& left,
const unique_ptr<U, Del2>& right);
template <class Ty1, class Ty2>
bool operator>=(
const shared_ptr<Ty1>& left,
const shared_ptr<Ty2>& right);
參數
left
要比較的其中一個物件。
right
要比較的其中一個物件。
Ty1
左側共用指標所控制的類型。
Ty2
右側共用指標所控制的類型。
備註
此範本運算子會傳回 left.get() >= right.get()
。
operator<
測試一個物件是否小於第二個物件。
template <class T, class Del1, class U, class Del2>
bool operator<(
const unique_ptr<T, Del1>& left,
const unique_ptr<U&, Del2>& right);
template <class Ty1, class Ty2>
bool operator<(
const shared_ptr<Ty1>& left,
const shared_ptr<Ty2>& right);
參數
left
要比較的其中一個物件。
right
要比較的其中一個物件。
Ty1
左側指標所控制的類型。
Ty2
右側指標所控制的類型。
operator<=
測試一個物件是否小於或等於第二個物件。
template <class T, class Del1, class U, class Del2>
bool operator<=(
const unique_ptr<T, Del1>& left,
const unique_ptr<U&, Del2>& right);
template <class Ty1, class Ty2>
bool operator<=(
const shared_ptr<Ty1>& left,
const shared_ptr<Ty2>& right);
參數
left
要比較的其中一個物件。
right
要比較的其中一個物件。
Ty1
左側共用指標所控制的類型。
Ty2
右側共用指標所控制的類型。
備註
這些範本運算子會傳回 left.get() <= right.get()
。
operator>
測試一個物件是否大於第二個物件。
template <class Ty1, class Del1, class Ty2, class Del2>
bool operator>(
const unique_ptr<Ty1, Del1>& left,
const unique_ptr<Ty2&, Del2gt;& right);
template <class Ty1, class Ty2>
bool operator>(
const shared_ptr<Ty1>& left,
const shared_ptr<Ty2>& right);
參數
left
要比較的其中一個物件。
right
要比較的其中一個物件。
Ty1
左側共用指標所控制的類型。
Ty2
右側共用指標所控制的類型。
operator<<
將共用指標寫入資料流中。
template <class Elem, class Tr, class Ty>
std::basic_ostream<Elem, Tr>& operator<<(std::basic_ostream<Elem, Tr>& out,
shared_ptr<Ty>& sp);
參數
Elem
資料流元素的類型。
Tr
資料流元素特性的類型。
Ty
共用指標所控制的類型。
out
輸出資料流。
sp
共用指標。
備註
此範本函式會傳回 out << sp.get()
。
範例
// std__memory__operator_sl.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0(new int(5));
std::cout << "sp0 == " << sp0 << " (varies)" << std::endl;
return (0);
}
sp0 == 3f3040 (varies)