问题描述
解决方案
因为 cout 操作符没有重载这种输出
解决方案二:
printf(""%p""fun);
这样,,,
解决方案三:
cout<<(void*)&fun<<endl;
试一下这样
解决方案四:
cout<<(void*)&fun<<endl;
试一下这样
手机端写的显示有问题
解决方案六:
cout << (int)(void *)fun<int> << endl;
时间: 2024-10-27 19:57:33
因为 cout 操作符没有重载这种输出
解决方案二:
printf(""%p""fun);
这样,,,
解决方案三:
cout<<(void*)&fun<<endl;
试一下这样
解决方案四:
cout<<(void*)&fun<<endl;
试一下这样
手机端写的显示有问题
解决方案六:
cout << (int)(void *)fun<int> << endl;