"Method invocation error" in int array length method

Android Studio raised this error in the length () method of an int array to get its length. How to allow?

Error

+4
source share
1 answer

Try without () :

 arrayTrofei.length; 
+14
source

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


All Articles