1
此代碼初始化一個新的EventBuilder對象並在該對象上設置值。爲什麼最後需要.build()?「.build()」在Google Analytics for Android的上下文中做了什麼?
tracker.send(new HitBuilders.EventBuilder()
.setCategory("Achievement")
.setAction("Unlocked")
.setLabel("5 Dragons Rescued")
.setValue(1)
.build());
可能重複[何時使用Builder模式?](https://stackoverflow.com/questions/328496/when-would-you-use-the-builder-pattern) – SoroushA