好吧,伙计们!
我在这里有一个小问题,为了让它更简单,它或多或少是这样的:
窗口.h
template <ObjectType &x>
class foo { stuff }
游戏.h
class gameclass { ObjectType a; }
主文件
gameclass mygame;
foo<mygame.a> fooa;
现在 fooa 失败了,因为它不允许我将 mygame 的成员“a”作为模板参数发送。
现在如何将类成员作为模板参数发送?
谢谢你