- memory[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template<class T, class U>
bool operator!=(const shared_ptr<T>& a, const shared_ptr<U>& b) noexcept; // (1)
template <class T>
bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept; // (2)
template <class T>
bool operator!=(nullptr_t, const shared_ptr<T>& x) noexcept; // (3)
}
- nullptr_t[link /reference/cstddef/nullptr_t.md]
非等値比較。
#include <iostream>
#include <memory>
int main()
{
std::shared_ptr<int> p1(new int(3));
std::shared_ptr<int> p2(new int(3));
if (p1 != p2) {
std::cout << "not equal" << std::endl;
}
std::shared_ptr<int> p3(new int(3));
if (p3 != nullptr) {
std::cout << "p3 is not nullptr" << std::endl;
}
if (nullptr != p3) {
std::cout << "p3 is not nullptr" << std::endl;
}
}
not equal
p3 is not nullptr
p3 is not nullptr
- C++11
- GCC: 4.3.6 (
nullptr
バージョン以外), 4.6.4 - Clang libc++, C++11 mode: 3.0 (
nullptr
バージョン以外), 3.3 - ICC: ?
- Visual C++: 2008 (TR1), 2010, 2012, 2013
- 2012までは
nullptr
バージョンがない。
- 2012までは