码迷,mamicode.com
首页 >  
搜索关键字:use case    ( 38996个结果
Heroku installation
It is the first time that I use heroku. But I encountered some problems installing it. Luckily, I resolved the problem.(In windows 8)Step 1: Sign up.....
分类:其他好文   时间:2014-05-01 12:32:50    阅读次数:317
【Win32】Windows
#include LRESULT CALLBACK WindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam){ switch (uMsg) { case WM_DESTROY: ...
分类:Windows程序   时间:2014-05-01 05:08:48    阅读次数:477
实现类成员函数回调
一、采用tri::function/bind方法实现类成员函数内部调用首先声明函数类型1 std::tr1::function func;在需要调用函数的地方绑定函数 1 switch (flgFun) { 2 case flgSine: 3 func = std::tr1::bind(&C...
分类:其他好文   时间:2014-05-01 05:03:39    阅读次数:346
net.sf.json.JSONException: 'object' is an array. Use JSONArray instead
list集合转换JSON出错误意思是:对象”是一个数组。使用jsonarray代替。解决方法:将JSONObject替换为JSONArray代码:JsonConfig jsonConfig = new JsonConfig();jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);JSONArray json = ...
分类:Web程序   时间:2014-04-29 13:43:21    阅读次数:1280
Use UMDH to identify memory leak problem
We sometimes got memory leak problem, and we need to find the leaked memory, Here is a useful tool from MS, UMDH, it is included in WinDBG install package. Here is a introduction on how to UMDH to identify memory leak problems...
分类:其他好文   时间:2014-04-29 13:38:21    阅读次数:374
设计模式之State模式
State模式定义:       允许一个对象在状态改变是,改变它的行为。看起来对象似乎修改了它的类。     模式理解(个人):       State模式主要解决的事在开发中时常遇到的根据不同状态需要进行不同的处理操作的问题,而这样的问题,大部分人会采用switch-case语句进行处理,这样会造成一个问题:分支过多,而且如果加入一个新的状态就需要对原来的代码进行编译。State...
分类:其他好文   时间:2014-04-29 13:34:21    阅读次数:285
poj 3468 A Simple Problem with Integers
A Simple Problem with Integers Time Limit: 5000MS   Memory Limit: 131072K Total Submissions: 55626   Accepted: 16755 Case Time Limit: 2000MS Description You have N...
分类:其他好文   时间:2014-04-28 10:23:41    阅读次数:282
Docker常用命令
Usage: docker [OPTIONS] COMMAND [arg...]  -H=[unix:///var/run/docker.sock]: tcp://host:port to bind/connect to or unix://path/to/socket to use A self-sufficient runtime for linux containers. Co...
分类:其他好文   时间:2014-04-28 10:17:41    阅读次数:359
poj 3264 Balanced Lineup
Balanced Lineup Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 32070   Accepted: 15090 Case Time Limit: 2000MS Description For the daily milking, Far...
分类:其他好文   时间:2014-04-27 22:44:53    阅读次数:302
The Leak of The Memory in C++ 1.2
This articles will show how to avoid the leak of the memory in c++, I just use this articles to summerise something, and show how awesome my English is. If someone need Chinese version, just told me....
分类:编程语言   时间:2014-04-27 22:22:19    阅读次数:430
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!