我想我想要做的就是这样(像马克一样表达)。
#define x->send(str) x->send(my(x, str))
内部功能“我的”
char *my(X x, char *d)
{
strcat(d, x->name); // assuming no memory problem
}
基本上,需要附加有关x的更多信息。当然,还有其他方法。但我希望对代码保持最小的更改,并且无法修改X类。谢谢!
下面列出的示例代码。
#include <stdio.h>
#include <string.h>
#define x->send(y) (x->send(my(x,y)))
class H
{
public:
char name[16];
void send(char *str)
{
printf("%s", str);
}
H()
{
strcpy(name, "adam");
}
};
char *my(H x, char *y)
{
strcat (y, "from ");
return strcat(y, x->name);
}
int main()
{
H *h = new H;
char str[32];
strcpy(str, "hello ");
h->send(str);
return 0;
}
答案 0 :(得分:1)
如果您无法修改X,我认为下一个最佳选择是在源代码上进行正则表达式替换,以调用您的包装函数。即使可以定义这样的宏,也会导致难以维持的噩梦。
答案 1 :(得分:1)
使用包装类。
class DiagnosticH : public H {
public: void send(char *str) { H::send(my(this, str)); }
};
#define H DiagnosticH // optional