比較:Gradle的build.gradle中的「vs」「」有什麼區別?
compile 'org.apache.commons:commons-lang3:3.6'
compile "org.apache.commons:commons-lang3:3.6"
我以前用的是''
我的build.gradle因爲它比""
和("")
簡單。
但是我發現額外的變量不使用''
,工作例如,
搖籃無法解析:
compile 'org.apache.commons:commons-lang3:$versions.commonsLang'
,
compile "org.apache.commons:commons-lang3:$versions.commonsLang"
是 工作。
編譯器性能? –
嗯,解析器,如果你願意的話。但是,是的,我喜歡微型優化:-D – sschuberth
我認爲即使_「微型」_也有幾個尺寸太大......「納米優化」下面有什麼? ;-P –