码迷,mamicode.com
首页 >  
搜索关键字:int32    ( 605个结果
C# 字符串详细使用
转自 http://www.cnblogs.com/candywyq/archive/2007/07/24/830021.html1.Convert.ToInt32与Int32.Parse的恩恩怨怨 2.Split的3种用法 3.@"abc"和"abc"区别在那里 4.保留2位有效小数及四舍五入 5...
分类:Windows程序   时间:2014-10-12 01:47:37    阅读次数:400
拆箱存在的隐患
static void Main(string[] args) {Int32 i = 10; object obj = new object(); //装箱操作,通常没有异常 try { ...
分类:其他好文   时间:2014-10-07 20:48:54    阅读次数:146
swift总结一
1.数据类型类型第一个字母大写整数 IntInt8 Int16 Int32 Int64UInt8 无符号数..FloatDoubleStringArrayDictionary类型推断var num = 1 //默认 整数var d = 1.23 //默认Double//swift 字符//双引号 1...
分类:编程语言   时间:2014-10-05 19:37:38    阅读次数:172
c#中字符串截取使用的方法
AndyZhangwelcome to java worldc#中字符串截取使用的方法String substring(int beginIndex)String substring(int beginIndex, int endIndex)String.Substring (Int32) 子...
分类:其他好文   时间:2014-09-30 18:49:39    阅读次数:277
google protobuf 简单实例
1.定义proto文件:User.protopackage netty;option java_package="myprotobuf";option java_outer_classname="UserProto";message User{ required int32 ID=1; ...
分类:其他好文   时间:2014-09-25 14:09:49    阅读次数:319
UDP问题
这两天使用C#的UdpClient,本机的服务是采用MFC的socket发的,用C#做客户端,然后客户端启动时,出现该条错误信息==通常每个套接字地址(协议/网络地址/端口)只允许使用一次.笔记的UdpClient不是很熟,用是是UdpClient(Int32)这个接口,在本机上,怎么都会有上面的这...
分类:其他好文   时间:2014-09-18 23:38:34    阅读次数:210
基础类三
main主线程数据 CWorkControl m_cWorkControl; CDispatchResult * m_pDispatchResult; int32 m_iWorkAllThread; CStringList m_lstPsNetCode; //网元队列 CStringList...
分类:其他好文   时间:2014-09-11 15:19:02    阅读次数:206
IndexOf、LastIndexOf、Substring的用法
今天遇到截取字符串的问题,在网上查了IndexOf、LastIndexOf、Substring这三种截取字符串的使用总结如下: String.IndexOf String.IndexOf 方法 (Char, Int32, Int32)报告指定字符在此实例中的第一个匹配项的索引。搜索从指定字符位置开始...
分类:其他好文   时间:2014-09-10 15:34:40    阅读次数:217
Codeforces2B--动态规划(路径DP)
#include #include #include #include #include #include typedef short int int16;///32767typedef int int32;///2147483647typedef long long int64;///922337...
分类:其他好文   时间:2014-09-07 18:28:15    阅读次数:279
c++ 中关于int,unsigned int , short的关系与应用
int类型比较特殊,具体的字节数同机器字长和编译器有关。如果要保证移植性,尽量用__int16 __int32 __int64吧 __int16、__int32这种数据类型在所有平台下都分配相同的字节。所以在移植上不存在问题。 所谓的不可移植是指:在一个平台上编写的代码无法拿到另一个平台上运行时,不能达到期望的运行结果。 例如:在32为平台上(所谓32位平台是指通用寄存器的数据宽度是32)编...
分类:编程语言   时间:2014-09-02 17:47:25    阅读次数:176
605条   上一页 1 ... 54 55 56 57 58 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!