什麼是C#的Convert.ToInt16(String)方法的C等價物? 在我的情況,我的字符串是一個字符數組。 感謝C#Convert.ToInt16(String)C Equivalent
1
A
回答
相關問題
- 1. Objective C BitConverter Equivalent
- 2. PHP Array to String equivalent
- 3. C#Message.CreateMessage()Android/Java Equivalent
- 4. c#爲什麼Convert.ToInt16(num)vs ToInt16(num)?
- 5. Objective-C塊的Swift Equivalent?
- 6. c string string strncpy
- 7. Convert.ToInt16 vb.net
- 8. C++ std :: string和string
- 9. C++ c-string,strncat,strncpy
- 10. Marshall c#string to C++
- 11. c#string [] to jquery string list?
- 12. Timespan不能Convert.ToInt16(elapsedSeconds))並且不能Convert.ToInt64(elapsedSeconds))錯誤Unity C#
- 13. C++ String \ Vector initialization
- 14. C++ string addition
- 15. C++ string/char * concatenation
- 16. String EndsWith(alphabet); C#
- 17. String [] to uint32 c#
- 18. xsd truncate string C#
- 19. string :: find問題(C++)
- 20. c#streamreader string開頭
- 21. Cython C++和std :: string
- 22. String IndexOf和Substring C#
- 23. C++ - MPIR:mpz_t to std :: string?
- 24. c#OrderBy string hierachy xx.xx.xx
- 25. Managed Type equivalent [MarshalAs(UnmanagedType.I8)]
- 26. iOS UrlEncodedFormEntity Equivalent
- 27. Hyperlink Equivalent
- 28. RewriteRule Equivalent
- 29. C++/CX:將std :: string轉換爲Platform :: String^
- 30. boost :: format表單c-string或std :: string
在C++中,你有更多的選擇 – 2009-09-03 13:06:17
@Ionut,在C++中,你不知道什麼類型爲16位。在C中它將是'int'。 – 2009-09-03 13:11:46
@Kirill:不是。 C不要求int是16位。它實際上規定,unsigned int可容納0和UINT_MAX(含)之間的所有值。 UINT_MAX必須至少65535,int型必須包含至少16個比特來保存所要求的值的範圍。所以是的,在C中你肯定至少有16位。 – 2009-09-03 13:23:05