What are the most important improvements in Java code on Android?


I'm just starting to program on Android.

What are the most expensive Java constructs you can avoid when programming an Android application?

Due to the fact that each algorithm is costly, but what about using method calls, object references, interfaces, collections, etc.? What should I avoid and what is “cheap” when I program speed?

+3
source share
2 answers

1) . , -.

2) Big Oh .

0

Source: https://habr.com/ru/post/1771930/


All Articles