我是靠谱客的博主 花痴热狗,最近开发中收集的这篇文章主要介绍c++自定义nullptr,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
using namespace std;

const class mynullprt_t
{
public:
	template<class T>
	inline operator T*() const  //隐式转换函数
	{
		cout << "T* is called" << endl;
		return 0;
	}
	template<class C, class T>
	inline operator T C::*() const //给类的成员函数赋予空指针
	{
		cout << "T C::* is called" << endl;
		return 0;
	}

private:
	void operator&() const; //将&符号禁用,因为没有空指针引用这么一说。
} mynullptr = {};

class A {
public:
	int *a;
};

int main()
{
	int *p = mynullptr;
	int A::*a = mynullptr;
	cout << p << endl;
	cout << a << endl;
	return 0;
}

 

最后

以上就是花痴热狗为你收集整理的c++自定义nullptr的全部内容,希望文章能够帮你解决c++自定义nullptr所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(74)

评论列表共有 0 条评论

立即
投稿
返回
顶部