ARM DMIPS算力说明 ARM算力参考官网地址
https://en.wikipedia.org/wiki/List_of_ARM_processors
Product familyARM architectureProcessorFeatureCache (I / D), MMUTypical MIPS MHzReferenceARM1ARMv1ARM1First implementationNoneARM2ARMv2ARM2ARMv2 added the MUL (mu…
test、exec、match的简单区别 1、test test 返回 Boolean,查找对应的字符串中是否存在模式。 var str "1a1b1c"; var reg new RegExp("1.", ""); alert(reg.test(str)); // true 2、exec exec 查找并返回当前的匹配结果,…