What is the equivalent to Python's pass in Java? I realize that I could use continue or not complete the body of a statement to achieve that effect, but I like having a pass statement.
pass
continue
Just use a semi-colon ;, it has the same effect.
;
2.1m questions
2.1m answers
60 comments
57.0k users