System.out.printf¶
Format String in Java
Bitwise Operators in Java
The Bitwise operators has relative low precedence. They have lower precedence than arithmatical operators. It is suggested that you use parentheses when you mix lower precendenc (bitwise opertors, ternary opertor, etc.) and high precendenc operators together.
There is no unsigned left shift operator in Java. https://www.quora.com/Why-is-there-no-unsigned-left-shift-operator-in-Java
Set in Java
Reference¶
Ways to To Run a Kotlin JAR
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
If you generate a uber JAR,
then you can directly using the java
command to run the JAR file
without specifying additional Kotlin runtime/stdlib JAR.
https://stackoverflow.com/questions/9355690 …