为什么不能加void?
template <class R>
Rect<R>::Rect(R length,R height)
{
m_length = length;
m_height = height;
}
如上,为什么不能把Rect函数定为void类型?
template <class R>
Rect<R>::Rect(R length,R height)
{
m_length = length;
m_height = height;
}
如上,为什么不能把Rect函数定为void类型?
2018-08-15
举报