码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
在Spring中轻松写日志
最近觉得写的一点代码(JAVA),还觉得颇为自得,贡献出来供大家参考。首先,先上代码:@Controllerpublic class Controller1{ @WriteLog(value = "${p0.username}从${ctx.ip}登录, 登录${iif(ret.suc...
分类:编程语言   时间:2014-07-07 17:10:44    阅读次数:236
Problem Word Break II
Problem Description:Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Ret...
分类:其他好文   时间:2014-07-07 15:55:48    阅读次数:208
如何防止僵尸进程的产生之fork两次
#include #include #include #include #include int main( void ) {     int signo;     pid_t pid;     if( (pid=fork())     {         fprintf(stderr, "main 1 fork err!\n");         ret...
分类:其他好文   时间:2014-06-26 11:45:48    阅读次数:212
外观模式之C++实现
#include"stdafx.h"#include#includeusingnamespacestd;classHand{public:voidGet(){coutGet();mouth->Eat();coutSee();leg->Run();coutEat();person->Run();ret...
分类:编程语言   时间:2014-06-25 14:17:23    阅读次数:269
iOS_应用程序的生命周期
每一个iPhone程序都包含一个UIApplication对象,它管理整个程序的生命周期,从加载第一个显示界面开始,并且监听系统事件、程序事件调度整个程序的执行。 int main(int argc, char *argv[]) {       NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];       int ret...
分类:移动开发   时间:2014-06-25 06:55:38    阅读次数:268
uva 10843 - Anne's game(数论cayley定理)
题目链接:uva 10843 - Anne's game 题目大意:给出n,问说有n个节点构成的标号树有多少种。 解题思路:cayley定理的躶题。 #include #include typedef long long ll; const ll MOD = 2000000011; ll Pow (ll x, ll n) { if (n 0) ret...
分类:其他好文   时间:2014-06-24 23:46:31    阅读次数:239
Generate a list of nice colors for curves in GNU Octave
function ret = GenColorList() ret = [ 0 0 255; # blue 138 43 226; # blueviolet 165 42 42; # brown 210 105 30; # chocolate 0 100 0; # dark-g...
分类:其他好文   时间:2014-06-24 14:11:38    阅读次数:199
DMI(Dynamic Method Invocation) 动态方法调用
创建action,内容如下:package action; import com.opensymphony.xwork2.ActionSupport; public class A extends ActionSupport { public String toJsp(){ ret...
分类:其他好文   时间:2014-06-24 14:01:10    阅读次数:197
8086汇编之 CALL 和 RET指令
Ret 和 call 也是转移指令,但是他们跟jmp不同的是,这两个转移指令都跟栈有关系。 ret 用栈中的数据修改IP的地址,从而实现近转移 ( ip ) = ( (ss)*16+ sp ) ( sp ) =( sp ) + 2 相当于pop ip retf 用栈中的数据来修改CS以及IP的值,实现段间转移 ( ip ) = ( (ss)*16+ sp ) ( sp ) =...
分类:其他好文   时间:2014-06-22 20:14:23    阅读次数:151
OpenCV -- 找图片轮廓
img = cv2.imread( 'E:\A.jpeg' ) cv2.imshow( 'img', img ) gray = cv2.cvtColor( img, cv2.COLOR_BGR2GRAY ) ret, binary = cv2.threshold( gray, 127, 255, cv2.THRESH_BINARY ) contours, hierarchy = cv2.fin...
分类:其他好文   时间:2014-06-22 09:49:42    阅读次数:370
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!