+ 1
How to use the static import feature?
In my below code, the static import is used to access "System.out.print()" method as "out.print()". How to use it to access the method as "print()"? Also, how it works? https://code.sololearn.com/cvIbcO6nM2nQ/?ref=app
1 Resposta
+ 2
I don't think you can because although System is class, out is a static instance. print method is not static so you need an instance like out.