看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: Win10, Linux, ...) win7 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) vc2010 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) 問題(Question): 如題 餵入的資料(Input): T = Point, K = float T = PointF, K = double 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): warning C4244 將 float 轉 int 可能導致資料遺失 將 double 轉 float 可能導致資料遺失 程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔) template <typename T, typename K> void func(T a, K b, T &c) { c.X = a.X * b; } 補充說明(Supplement): 原本以為 decltype 可以幫上忙, 但似乎不能這樣寫... c.X = (decltype c.X) (a.X * b); 正確寫法 c.X = (decltype (c.X)) (a.X * b); 看到 warning 很煩躁... 我知道T, K不能亂丟型態進去 因此我想要把泛型做成 class private 然後 public 指定的T K 感謝大大撥冗觀看 -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 42.73.148.184 (臺灣) ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1566892743.A.BC7.html ※ 編輯: s4300026 (42.73.148.184 臺灣), 08/27/2019 16:02:41
sarafciel: 你的T跟K為什麼一定要帶會降轉的case進去呢?08/27 16:41
s4300026: 因為 T 一定是Point或 PointF。 K至少要是float。 話說08/27 17:55
s4300026: 我還打算傳自創的 PointD呢!08/27 17:55
s4300026: T是點位,K是我的放大倍率08/27 17:57
LPH66: 這跟泛型無關, 是降轉的問題08/27 19:48
LPH66: 以 T.X 是 int, K 是 float 來說的話08/27 19:49
LPH66: a.X * b 是一個 int 乘 float, 照規則會得到 float08/27 19:49
LPH66: 然後你要把一個 float 塞進 c.X 這個 int 裡就噴 C4244 了08/27 19:50
LPH66: 這裡跟泛型沾到邊的地方只有因為泛型你不知道 T.X 的型態08/27 19:51
LPH66: 那麼用 decltype 是對的, 但你忘了括號08/27 19:51
LPH66: decltype 要帶一對 () 裡面放式子才是對的語法:08/27 19:52
※ 編輯: s4300026 (42.73.148.184 臺灣), 08/28/2019 08:00:08
s4300026: 你說的沒錯,這確實是降轉的問題,但關鍵就在於泛型使08/28 08:07
s4300026: 我無法用已知型別強制轉型,以及我不了解 decltype 該08/28 08:07
s4300026: 怎麼使用。08/28 08:07
※ 編輯: s4300026 (42.73.148.184 臺灣), 08/28/2019 08:09:25