List of operators

mshihrer

Member
Licensed User
Longtime User
sorry if this has been asked, searched around, can't find my answer. Anyway, is there a list of operators for B4A?
I've figured out some on my own, but some that I use in other languages don't seem to work.
Thanks.

edit:
I found the list of Java operators, am I to assume this is it for B4A as well? No ^ operator? Have to use the power() method? Is this correct?

Summary of Operators (The Java™ Tutorials > Learning the Java Language > Language Basics)
what is the best method to square a number? I'm just multiplying by itself..
instead of result = power(x,2) I use result = (x*x)

also, I know <> works for not equal, and this is not on the Java list.
 
Last edited:
Top