码迷,mamicode.com
首页 >  
搜索关键字:char nchar varchar nvarchar text ntext    ( 92775个结果
UVA之537 - Artificial Intelligence?
Artificial Intelligence?  Physics teachers in high school often think that problems given as text are more demanding than pure computations. After all, the pupils have to read and underst...
分类:其他好文   时间:2014-05-02 23:39:35    阅读次数:485
cocos2d-x3.0 Slider
.h #include "cocos2d.h" #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; RichText* _richText; Text...
分类:其他好文   时间:2014-05-02 22:25:51    阅读次数:459
简单版猜拳游戏
界面很简单//玩家类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 猜拳游戏{ /// //...
分类:其他好文   时间:2014-05-02 12:04:15    阅读次数:292
Ubuntu Sublime text 2 安装 SublimeClang
Instructionshereare not great.First shut down ST2.Make sure you use absolute paths for symlink:e.g.$ curl -kL http://xrl.us/pythonbrewinstall | bash$ ...
分类:其他好文   时间:2014-05-02 11:01:23    阅读次数:382
关于HTTP协议头域详解
HTTP1.1请求头:消息头 Accept:text/html,image/*告诉服务器,客户机支持的数据类型Accept-Charset:ISO-8859-1告诉服务器,客户机采用的编码 Accept-EnCoding:gzip,compress告诉服务器,客户机支持的数据压缩格式Accept.....
分类:其他好文   时间:2014-05-02 08:46:58    阅读次数:248
JAVA中获取当前系统时间
转自:http://www.cnblogs.com/Matrix54/archive/2012/05/01/2478158.html一. 获取当前系统时间和日期并格式化输出: 1 import java.util.Date; 2 import java.text.SimpleDateFormat; ...
分类:编程语言   时间:2014-05-02 08:36:13    阅读次数:811
String构造器中originalValue.length>size 发生的情况
最近在看Jdk6中String的源码的时候发现String的有个这样的构造方法,源代码内容如下: public String(String original) { int size = original.count; char[] originalValue = original.value; char[] v; if (originalValue.length > size) { ...
分类:其他好文   时间:2014-05-02 06:34:52    阅读次数:237
理解指针
如题:理解指针VS如何看汇编代码(DEBUG状态) Debug->Windows->DisAssambly即可看到汇编窗口先看看C++代码int _tmain(int argc, _TCHAR* argv[]){ /* char temp[100] = "c:\abc\bcd\cde ...
分类:其他好文   时间:2014-05-02 06:02:18    阅读次数:276
C#简单工厂模式(文件案例)
usingSystem; usingSystem.Collections.Generic; usingSystem.IO; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; namespace读文件案例 { classProgram { staticvoidMain(string[]args) { Console.WriteLine("请输入文件名"); stringfileName=Console.Read..
分类:其他好文   时间:2014-05-02 04:00:58    阅读次数:289
串的模式匹配算法(KMP)
算法: #include using namespace std; #define MAXSIZE 100 void calNext(const char *T,int *next);//T为模式串,next为预判数组 int kmp_match(const char *S,const char *T);//在主串S中寻找模式串T,如果找到返回其位置,否则返回-1。位置从0开始 void ...
分类:其他好文   时间:2014-05-02 02:25:40    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!