我运行了以下jsperf https://jsperf.com/push-vs-define-anaoum
并发现在这种情况下推送:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
比仅使用子数组声明a更快:
var a = [];
a.push([1,2,3]);
a.push(["a","b","c"]);
有人可以告诉我为什么或指出正确的文件吗?