6
score
996
views
no
status
CC BY-SA 3.0
Why does some android code have public fields?
Check out this section from developer.android.com: In native languages like C++ it's common practice to use getters (i = getCount()) instead of accessing the field directly (i = mCount). This is an excellent habit for...