本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
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 ...