摘要: //十进制转二进制Console.WriteLine(Convert.ToString(69, 2));//十进制转八进制Console.WriteLine(Convert.ToString(69, 8));//十进制转十六进制Console.WriteLine(Convert.ToString(69, 16));//二进制转十进制Console.WriteLine(Convert.ToInt32... 阅读全文
posted @ 2009-07-19 12:59 panygu 阅读(251) 评论(1) 推荐(0) 编辑
摘要: C#的String.Split 方法String.Split 方法有6个重载函数:程序代码1) public string[] Split(params char[] separator)2) public string[] Split(char[] separator, int count)3) public string[] Split(char[] separator, StringSpli... 阅读全文
posted @ 2009-07-18 22:50 panygu 阅读(5340) 评论(1) 推荐(1) 编辑
摘要: I’ve been playing around with the RichTextBox, and as Richard points out,the free spell checking on WPF TextBoxes is really cool– especially for the “spelling challenged” such ... 阅读全文
posted @ 2009-07-18 18:41 panygu 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 枚举  枚举类型声明为一组相关的符号常数定义了一个类型名称。枚举用于“多项选择”场合,就是程序运行时从编译时已经设定的固定数目的“选择”中做出决定。  枚举类型(也称为枚举)为定义一组可以赋给变量的命名整数常量提供了一种有效的方法。例如,假设您必须定义一个变量,该变量的值表示一周中的一天。该变量只能存储七个有意义的值。若要定义这些值,可以使用枚举类型... 阅读全文
posted @ 2009-07-18 16:40 panygu 阅读(854) 评论(0) 推荐(0) 编辑
摘要: const 一般常量:eg:int const x=2 或 const int x=2 两者无区别 对象常量:eg:<类名>const<对象名> 或const<类名><对象名> 两者无区别 常指针: int * const r=&n (r是常量指针,不允许改变,所以:r=m是错误的,*r=1是允许的。) constint *r=&... 阅读全文
posted @ 2009-07-14 10:59 panygu 阅读(254) 评论(0) 推荐(0) 编辑
摘要: fstream class <fstream> Input/output file stream class ios_base ios istream iostream fstream ostream fstreamprovides an interface to read and write data from files as input/output streams.The ob... 阅读全文
posted @ 2009-07-14 10:44 panygu 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 学C++的时候,这几个输入函数弄的有点迷糊;这里做个小结,为了自己复习,也希望对后来者能有所帮助,如果有差错的地方还请各位多多指教(本文所有程序均通过VC 6.0运行)转载请保留作者信息;1、cin1、cin.get()2、cin.getline()3、getline()4、gets()5、getchar()1、cin>>用法1:最基本,也是最常用的用法,输入一个数字:#include... 阅读全文
posted @ 2009-07-14 10:40 panygu 阅读(344) 评论(0) 推荐(0) 编辑