- 论坛徽章:
- 0
|
这两天换了Ubuntu装了Archlinux,发现GCC已经到了4.3。于是去GNU上看了看4.3的Changelog,发现已经实现了C++ TR1 ,并初步实现了C++0x。
初步看看了网上C++ TR1的介绍tuple smart_ptr function都是很便利的工具
下面我写了点function的测试代码
#include <tr1/array>
#include <tr1/tuple>
#include <tr1/memory>
#include <tr1/functional>
#include <vector>
#include <string>
#include <iostream>
class A {
public:
std::string m_value;
A() :
m_value("Defult") {
}
~A() {
fprintf(stdout,"---------------\nDestruction\nAddress:%08X\nValue:%s\n---------------\n",this,m_value.c_str());
}
void setValue(const std::string& op){m_value=op;}
void setValue(){m_value="New Value";}
std::string getValue(){return m_value;}
};
typedef std::tr1::function<void(A& p)> sampleFunction;
typedef std::tr1::shared_ptr<A> ptrA;
typedef void(A::*A_fun1)();
void foo(A& p) {
p.m_value="Hello world!";
}
int main() {
ptrA p0(new A);
sampleFunction func1(foo);
A_fun1 fp=&A::setValue;
sampleFunction func2(fp);
//sampleFunction func3(&A::setValue);
std::cout<<p0->getValue()<<'\n';
func1(*p0);
std::cout<<p0->getValue()<<'\n';
func2(*p0);
std::cout<<p0->getValue()<<'\n';
return 0;
}
|
基本实现了我的想法
不过从例子中可以看到如果成员函数被重载,比如有两个setValue ,只能用比较繁琐的代码 需要定义成员函数指针 。
而如果setValue只有一个函数,没有其他重载函数,则被注释掉的代码可以编译。
问一下这个问题是不是只能这样做 我看了 C++ Primer和《C++ Function Objects in TR1》也没想出什么好的写法
真实怎么看怎么讨厌 |
|