06 2020 档案
摘要:目录 (一) java风格迭代器1. QListIterator类1. 初始化2. findNext()3. findPrevious()4. hasNext()5. hasPrevious()6. next()7.previous()8.toBack()9.toFront()10.peekPrev
阅读全文
摘要:(一)常用方法 toFixed(); 四舍五入到小数点后几位 var x=9.656; x.toFixed(0);//10 x.toFixed(2);//9.66 x.toFixed(4);//9.6560 x.toFixed(6);//9.656000 toPrecision() 四舍五入保留有效
阅读全文
摘要:目录 1. isNull()2. isEmpty()3. length()4. truncate()5. indexOf()/lastIndexOf()6. arg()7. at()8. append()/prepend()9.contains()10. begin()/end()11. inser
阅读全文
摘要:#include<iostream> #include<string> #include<fstream> #include<cstdlib> #include<ctime> #include<cctype> using namespace std; const int NUM=26; const
阅读全文
摘要:(一)引用数据类型 objectfunctionarray object JavaScript对象用花括号来书写 对象属性是name:value由逗号分隔 var x={firstname:"bill",lastname:"ddd"}; function <!DOCTYPE html> <html>
阅读全文