这是我的真心体会,在尝试使用Laravel、ThinkPHP、Yii、symfony2、CI、cakephp、Yii2 之后的真实想法(default7#zbphp.com)。1)ThinkPHP (版本号3.1.3)我一開始用到的是ThinkPHP 3.1.3,入门门槛就是网址与方法相应这一点。当...
分类:
Web程序 时间:
2014-07-07 19:40:23
阅读次数:
445
Problem Desciption : Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subsequence of a string is a new string which is...
分类:
其他好文 时间:
2014-07-07 19:39:07
阅读次数:
206
在myeclipse中部署项目时,当Deploy type为Exploded Archive(deveplopment mode)时,finish按钮为灰色,无法部署的解决方法: 1.project上右键properties->MyEclipse->web->web context-root为空 输...
分类:
编程语言 时间:
2014-07-07 19:38:31
阅读次数:
282
http://acm.hdu.edu.cn/showproblem.php?pid=1690坑爹的题,必须用__int64 %I64d(以前没用过)因为这题的数据特别大,所以用-1 1 #include 2 #include 3 #include 4 #include 5 #inc...
分类:
其他好文 时间:
2014-07-07 19:37:54
阅读次数:
214
1. 为什么要智能指针?由于C++语言没有自动内存回收机制,程序员每次new出来的内存都要手动delete。但是有时候可能程序员会忘记delete,也可能是因为流程太复杂,最终没有delte,也可能是因为异常的存在,导致程序过早的退出,没有执行delete。用只能指针可以有效的解决这些问题。std:...
分类:
其他好文 时间:
2014-07-07 19:37:10
阅读次数:
323
使用方法:基于XML方式配置调用:1 任务类实现:package com.demo.schedule;public class ScheduleTask { private int i=0; public void process(){ System.out.println...
分类:
编程语言 时间:
2014-07-07 19:36:28
阅读次数:
235
Windows 下设置 tramp以前一直以为 tramp 在 windows 下是基本无法工作,或者需要很费劲才能配置好。今天发现通过 puttygen, plink 这些工具(都是 putty 那一套)配置起来其实还挺方便的。1 通过 plink 连接 linux将 plink 放到你的 pat...
data <- read.csv("//Users//tangjingxiao//Desktop//2.csv",header=T,sep="\t",encoding="utf-8")datafix(data)View(data)newdata <- t(data)view(newdata)View...
分类:
其他好文 时间:
2014-07-07 19:35:07
阅读次数:
208
linq to Entity Framework 中left join 的使用,Linq 中使用Into 语句和不使用Into 语句的区别, Linq DefaultIfEmpty 函数的作用
分类:
其他好文 时间:
2014-07-07 19:31:23
阅读次数:
296