What's the best language for real-time graphics programming on Android?

前端 未结 3 856
日久生厌
日久生厌 2021-02-08 09:15

Some googling has led me to believe that C++ is the best language for real-time 2D graphics programming, but since the Android is Java-based, is that still the best option? Or u

3条回答
  •  天命终不由人
    2021-02-08 09:25

    You're making the assumption that the Android system will be too slow to do what you want, without any data to back that up. Write some tests in Java, and test out the performance first. You don't want to make assumptions about performance without any basis.

    Premature optimization is the root of all evil. - Knuth

提交回复
热议问题