我写了这样一个类struct obj
{
....}template<class T,int M>
class cheshi
{
}实例化如下
cheshi<obj,14> mm;
cheshi <obj,12> nn;
想在xiaoxiao函数里调用xiaoxiao(mm,nn)声明如下:
template<class T,int M> void xiaoxiao(Cceshi<T,M> m_1,Cceshi<T,M> m_2)但编译出错 ,可是我怎样传参数 mm,nn ?????????