一般列表页面中,我们都需要带分页信息区分当前页号,为区分第一页,和第一页后的其他所有分页页面.我们推荐的做法为:第一页显示正常的标题,从第二页开始便显示xxxxx-第2页-xxxx网.做法是.修改帝国cms的源码!修改e/class/functions.php 找到 $string=str_rep....
分类:
其他好文 时间:
2015-04-02 18:01:22
阅读次数:
110
# 把Busybox所有的命令通过alias映射出来(若此命令不存在时)# 这么做只是为了平时敲命令行时无须额外的打 busybox (感觉很麻烦的说)for applet in $(busybox | busybox sed '1,/Currently defined functions/d;s/...
分类:
移动开发 时间:
2015-04-01 19:09:29
阅读次数:
292
结论: 从面相对象编程的角度考虑,拷贝构造函数调用重载赋值操作符,重载赋值操作符调用拷贝构造函数的写法都是没有意义的。应该避免。Don't try to implement one of the copying functions in terms of the other. Instead, pu...
分类:
编程语言 时间:
2015-04-01 15:14:08
阅读次数:
141
SCALA学习笔记(二)
SCALA学习笔记二
泛型在继承中的类型变化
Invariant
Covariance
Contravariance
Covariance
Contravariance
Call-ByName
Currying柯里化初探
lambda和closure的区别
集合二维运算
foldLeft foldRight
Function Object
Partial Fu...
分类:
其他好文 时间:
2015-03-30 08:03:38
阅读次数:
440
源码版本:Android-4.4.4_r2
在AndroidRuntime::start中调用AndroidRuntime::startVm函数启动了虚拟机,然后又调用了AndroidRuntime::startReg函数注册Android函数:
/*
* 向 VM 注册Android本地函数。
* Register android native functions with...
分类:
其他好文 时间:
2015-03-29 00:37:25
阅读次数:
209
概念:cURL(Client URL Library Functions)is a command line tool for transfering data with URL syntax(使用 URL 语法传输数据的命令行工具),即客户端向服务器请求资源的工具。使用场景:① 网页资源(例如编写...
分类:
Web程序 时间:
2015-03-28 20:11:44
阅读次数:
135
Sometimes we'll want to sort a collection by something other than its natural order. For example, suppose we wanted to sort strings by their length in...
分类:
其他好文 时间:
2015-03-20 16:17:47
阅读次数:
107
有时候输出信息太长,屏放不下,下面介绍两种将gdb的输出信息存到文件的方法。方法一:适合临时向文件输出些信息的情况。比如要用info functions输出所有函数,结果往往有一大坨,所以可以将之输出到文件。(gdb) set logging file (gdb) set logging on(gd...
分类:
数据库 时间:
2015-03-19 21:31:12
阅读次数:
123
#!/bin/bash
#chkconfig:23458012
#processname:market_tomcat
source/etc/init.d/functions
[-r"$SYSCONFIG"]&&source"$SYSCONFIG"
RETVAL=0
TOMCAT_NAME=market_tomcat
start(){
pid=`ps-ef|grep$TOMCAT_NAME|grep-vgrep|wc-l`
if[$pid-ne0];then
echo"marketalre..
分类:
其他好文 时间:
2015-03-19 16:33:45
阅读次数:
120
很多用户在后台发布文章,常常会忘记选择分类,所以很有必要添加一个提醒功能,如果没有选择分类,点击发布时,就显示一个提示信息。要实现这个功能,只要将下面的代码添加到主题的 functions.php 即可:/** * WordPress 发布文章前必须选择分类 * http://www.wpdaxue...
分类:
其他好文 时间:
2015-03-19 08:49:38
阅读次数:
101