本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
java-007 - benladeng5225
- Anmin
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
benladeng5225 - wy_19921005
- vipbooks
- kaizi1992
- 青否云后端云
- e_e
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- lemonhandsome
- wallimn
- jh108020
- ganxueyun
- Xeden
- xyuma
- zhanjia
- wangchen.ily
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- jveqi
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- silverend
- chenqisdfx
- xiaoxinye
- flashsing123
- bosschen
- lyndon.lin
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
最新文章列表
RandomAccessFile方法使用测试
public class Test {
public static void main(String[] args) throws IOException, InterruptedException {
test1();
// test2();
test3();
}
private static void test1() throws IOEx ...
利用.htaccess绑定域名到子目录
首先得把域名绑定绑定了,比如把dev.ccvita.com解析到211.136.108.190这个IP
其次是在网站管理面板里,为网站绑定dev.ccvita.com
最后编辑配置.htaccess文件,就可以了。
.htaccess文件内容
RewriteEngine on
# 把 ccvita.com 改为你要绑定的域名.
RewriteCond %{HTTP_HOST} ^(w ...
左值与右值在C++标准中的表述
VC2010中给出了几个激动人心的特性,为了更好的了解右值引用带了的激动人心的性能提升,我们需要了解左值与右值的一些概念。
摘自C++标准2003版本,第三章
1 Every expression is either an lvalue or an rvalue.
表达式不是左值便是右值
2 An lvalue refers to an object or function ...
javascript框架prototype和jquery模型总结和抽取
<script>
functionjquery(o)
{
if(this===window)returnnewjquery(o);
this.length=0;
Array.prototype.push.apply(this,o);
}
jquery.prototype.each=function(fn)
{
vari,a=this;
for(i=0;i&l ...