Coding...
工程師的記錄簿
網頁
首頁
C# 物件導向
Error 整理
重構
測試相關
設計模式
Google Analytics API 使用教學
關於本站
2014年2月1日 星期六
[C#] cast vs convert
直接看範例就知道嚕~
double
d
=
25.30
;
//無條件捨去 25
int
i
=
(
int
)
(
d
+
0.5
)
;
//正確的四捨五入 26
int
j
=
Convert
.
ToInt32
(
d
+
0.5
)
;
Console
.
WriteLine
(
"i:"
+
i
+
" j: "
+
j
)
;
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言