var s="abcdef";console.log(s.length);console.log(s.charAt(2));console.log(s.indexOf("c"));console.log(s.substring(0,4));//substring(开始位置,结束位置) abcdconsole.log(s.substr(2,4));//substr(开始位置,截取的长度) cdef
2.日期
var date=newDate();console.log(date.getFullYear());console.log(date.getMonth()+1);console.log(date.getDate())//一个月中的的天console.log(date.getDay())//星期console.log(date.getHours());
3.Math
console.log(Math.random());
4.数组
var a=newArray();a[0]=1;a[1]=2;a[3]="a";a[5]=true;//数组长度会根据索引自动扩充到最大长度var c=newArray();c=[1,2,3,4,5,7,6,8];console.log(a);console.log(a.length);var cs=c.join("");//将数组转为一个字符串console.log(cs);console.log(c.reverse())//将数组逆序操作var c1=[2,11,3,5,1];c1.sort(numbersort);//在sort内部调用自定义的numbersort函数,每次传入两个值console.log(c1);//对数字排序的自定义比较函数functionnumbersort(a,b){return a-b;}
一,问题现象
在编译库的时候出现如下图所示的报错:C:/msys64/mingw32/bin/…/lib/gcc/i686-w64-mingw32/13.2.0/…/…/…/…/i686-w64-mingw32/bin/ld.exe: ca nnot find -lxml2: No such file or directory collect2.exe: error: ld returned 1 exit s…