码迷,mamicode.com
首页 >  
搜索关键字:eve    ( 10269个结果
关于spring中注解和xml混合使用
可以混合用。文档有说明: Spring can accommodate both styles and even mix them together. 混合用的话,有个先后顺序,xml配置会覆盖annotation。原文: Annotation injection is performed befo ...
分类:编程语言   时间:2017-03-28 21:54:35    阅读次数:221
git的使用
1.首先进入需要上传的project 2.在要上传到项目中执行: git add . 3.然后执行:git commit -m "fitst commit" 4. git remote add origin +github的项目链接 5.最会用git push -u origin master(br ...
分类:其他好文   时间:2017-03-28 21:52:39    阅读次数:167
bzoj1047题解
【解题思路】 (p.s.:刚看的时候一脸懵逼。。没看见N已经给定了,还以为要用某些高明的方法。。果然还是太naive了。。) 两遍预处理,第一遍处理出f[i][j][0/1]表示第i行从j-n+1~j中的最小/大值,第二遍基于f数组处理出g[i][j][0/1]表示以(i,j)为右下角的长度为n的正 ...
分类:其他好文   时间:2017-03-28 21:37:08    阅读次数:352
git 只merge一个commit的方法
https://git-scm.com/book/tr/v2/Git-Basics-Viewing-the-Commit-History gil log 来查看commit的记录 Other maintainers prefer to rebase or cherry-pick contribute ...
分类:其他好文   时间:2017-03-28 21:19:41    阅读次数:534
js获取网页面的高度和宽度
网页可见区域宽:document.body.clientWidth网页可见区域高:document.body.clientHeight网页可见区域宽:document.body.offsetWidth(包括边线的宽)网页可见区域高:document.body.offsetHeight(包括边线的宽) ...
分类:Web程序   时间:2017-03-28 16:46:44    阅读次数:175
c#自定义控件中的事件处理
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Data; 6 using System.Linq; 7... ...
分类:Windows程序   时间:2017-03-28 16:33:33    阅读次数:280
运维常用命令
常用命令 mysql iptables rsync git ...
分类:其他好文   时间:2017-03-28 11:01:21    阅读次数:157
VB.NET生成重复窗体
生成2个窗体,form1,form2; 一个按钮:button1 功能延伸:可以加载重复的表单,达到直观对比数据目的 ...
分类:Windows程序   时间:2017-03-28 00:23:24    阅读次数:274
GPTL—练习集—006树的遍历
#include using namespace std; typedef int daTp;//datatype typedef struct BTNode *position; typedef position BTree; const int MAXN=30; struct BTNode { ... ...
分类:其他好文   时间:2017-03-27 21:32:00    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!