テンプレート パラメーターとして使用されるクラスのメンバー関数内に、次のコードを含む関数があります。
double x = /*Something operation returning double*/;
x /= CubeWidth; /*CubeWidth is a class member*/
cout << "Element after centering and normalization = " << x << endl;
cout << "and after adding 1 and truncating = " << x+1 << endl;
cout << "then static cast = " << (int) x+1 << endl;
この関数の出力は
Element after centering and normalization = 1
and after adding 1 and truncating = 2
then static cast = 1
明らかに、最後の行は答え 2 を与えるはずです。
テンプレートパラメーターとして使用せずにまったく同じクラスをインスタンス化すると、この出力は得られず、正しい出力が得られます。
なぜこれが起こっているのか誰にも教えてもらえますか?