template初めて使ったんだけど引数側に同じtemplate型があれば、
返り値をわざわざ指定しなくてもいいの?

↓こんなん
template<typename T>
T zeroCheckException(T t){
if(t == 0)throw;
return t;
}