保留一个未解决的问题
程序员文章站
2022-06-25 15:06:42
``` // // main.cpp // testvoidmain // // Created by mac on 2019/4/11. // Copyright © 2019年 mac. All rights reserved. // 1.只有成员函数才能有const限定符 // 2.脑袋怎么总 ......
// // main.cpp // testvoidmain // // created by mac on 2019/4/11. // copyright © 2019年 mac. all rights reserved. // 1.只有成员函数才能有const限定符 // 2.脑袋怎么总是混乱 // 3.在类内部定义指向函数的指针有点蠢? #include <iostream> using namespace std; template <class gentype> class classf{ public: classf(){ } ~classf(){} gentype fun1(gentype &); gentype (classf:: *p)(gentype &)=&classf::fun1; }; template<class gentype> gentype classf<gentype>::fun1(gentype &a){ return a; } int main(int argc, const char * argv[]) { classf<int> cf,*q=&cf; int a=3; cout<<cf.fun1(a)<<endl; cout<<(cf.*p(a)); cout << "hello, world!\n"; return 0; }
推荐阅读
-
解决IE浏览器窗口开机始终是最小化的问题
-
如何解决搜狐影音播放“画面卡”或提示“网络连接异常”的问题?
-
IE发生内部错误 窗口被关闭的问题的解决办法
-
Oracle 11g的密码更新 Oracle 11g密码180过期问题解决方案
-
python实战串口助手_解决8串口多个发送的问题
-
解决Flask读取mysql数据库的中文乱码问题
-
在arcgis使用python脚本进行字段计算时是如何解决中文问题的
-
完美解决PJ的Cookies保存时限问题!可选择记录登陆时长!
-
mysqlreport显示Com_中change_db占用比例高的问题的解决方法
-
ScrollView与ListView合用(正确计算Listview的高度)的问题解决