Stella981 Stella981
2年前
Linux的.a、.so和.o文件 windows下obj,lib,dll,exe的关系 动态库内存管理 动态链接库搜索顺序 符号解析和绑定 strlen函数的汇编实现分析
Linux的.a、.so和.o文件chlele0105的专栏CSDN博客https://blog.csdn.net/chlele0105/article/details/23691147在说明Linux的.a、.so和.o文件关系之前,先来看看windows下obj,lib,dll,exe的关系https://zh.wikipedia.
Wesley13 Wesley13
2年前
JAVA 算法代码分享
1.按一定长度截取字符串成数组publicstaticStringsplitStringByLength(Stringstr,intlen){intstrLenstr.length();StringresultArray;if(strLen%len
Wesley13 Wesley13
2年前
PHP 截取字符串
1.截取GB2312中文字符串<?php//截取中文字符串functionmysubstr($str,$start,$len){$tmpstr"";$strlen$start$len;for($i0;