In Vb.net, I can split the code using & symbol. Example:
if (a<>b) & _
(c<>d) then
The above code is consider one statement. Is there any similar way that work in Android Studio?
In Vb.net, I can split the code using & symbol. Example:
if (a<>b) & _
(c<>d) then
The above code is consider one statement. Is there any similar way that work in Android Studio?
Java statements can span over multiple lines, no need to specify a line break. (Note this depends on the language, not the IDE).
If you want to split across multiple lines no need to terminate the line...