一、Adapter(适配器)描述:将两个不兼容的类结合一起使用,一般需要用到其中某个类的若干方法好处:在两个类直接创建一个混合接口,而不必修改类里面的其他代码例子:假设我们要打桩,有两种类:方形桩
圆形桩.public class SquarePeg{ public void insert(Str....
分类:
其他好文 时间:
2014-05-28 01:21:05
阅读次数:
256
打开 ../ include/
common.func.php添加代码//将缩放图转变为文章第一张图片function
firstimg($str_pic){$str_sub=substr($str_pic,0,-7).".jpg";//删除缩略图字符串最后七位,然后再补上后缀.jpgreturn
...
分类:
其他好文 时间:
2014-05-27 17:06:48
阅读次数:
304
1.php str_replace函数:str_replace()
函数使用一个字符串替换字符串中的另一些字符。str_replace(find,replace,string,count)find:必须,表示被查找的值replace:必须,替换别查找的值的值string:必须,被查找的字符串coun...
分类:
Web程序 时间:
2014-05-26 19:38:05
阅读次数:
292
征服C指针:P70#include "stdio.h"char *int_to_str(int
int_value){ static char buf[20]; sprintf(buf,"%d",int_value); return buf;}int
main(){ c...
分类:
编程语言 时间:
2014-05-26 17:07:52
阅读次数:
249
1、在脚本中使用datagridview.Rows[i].Cells[1].Value并将其转换为string时,遇到int类型
有时可是直接使用.toString()转换为字符有时必须采用str(datagridview.Rows[i].Cells[1].Value)原因不明,待查
分类:
编程语言 时间:
2014-05-26 17:05:14
阅读次数:
259
用func_get_args()(func_num_args另一个方法和这个相似)方法来获取全部传入参数,数组的值先进先出的是array_shift,后进先出array_pop;explode("
",$sql)[0]这种写法在php5.4之前是不支持的;str_replace()替换$sql语句中...
分类:
其他好文 时间:
2014-05-26 01:05:58
阅读次数:
328
1.String to InputStream String str =
"String与InputStream相互转换"; InputStream in_nocode = new
ByteArrayInputStream(str.getBytes()); InputStream in_withco...
分类:
其他好文 时间:
2014-05-25 23:39:21
阅读次数:
286
and 命令if [ A -a B ]thenelsefiset commandset these
are parameters$1setstringsstr="A is a"echo "$str"a=30 b=15echo `expr $a +
$b`echo `expr $a - $b`ec.....
分类:
其他好文 时间:
2014-05-25 22:15:35
阅读次数:
268
这篇文章也是长期性的一个积累,对于本人个性化的一些使用C/C++造成的失误进行记录。 1)Printf
中格式化使用造成的失误: int main() { char* str="-1234"; printf("string is %lld\nstr length
is %...
分类:
编程语言 时间:
2014-05-25 20:08:47
阅读次数:
266
-----024-file.php ----- 1 2 3 4 5 文件处理 6 7 8 文件处理 9
10 数组14 $str_zzz = file_get_contents($f_zzz); // 文件 => 字符串15 $arr_temp =
ex...
分类:
Web程序 时间:
2014-05-25 03:02:16
阅读次数:
374