How are keywords represented in binary form?
For ex:: In java, how is the sin()
represented in binary? How is sqrt()
and other functions represented.
If not only in java, in any language how is it represented?? because ultimately everything is translated into binary and then into on and off signals.
Thanks in advance.
Firstly,
sin
is not a keyword in Java. It is an identifier. Keywords are things likeif
,class
, and so on.It depends on when you are asking about.
In the source code, the
sin
identifier is represented as characters, and those characters are represented as bits (i.e. binary) .... if you want to look at it that way.In the classfile that is output by the
javac
compiler, the wordsin
is represented as string in the Constant Pool. (The JVM spec specifies the format of classfiles in great detail.)When the classfile is first loaded by a JVM, the word
sin
becomes a JavaString
object.When the code is linked by the JVM, the reference to the
String
is resolved to some kind of reference to a method. (The details are implementation specific. You'd need to read the JVM source code to find out more.)When the code is JIT compiler, the reference to the method (typically) turns into the address in memory of the first native instruction of the JIT compiled method. (Strictly speaking, this is not "assembly language". But the native instructions could be represented as assembly language. Assembly language is really just a "human friendly" textual representation of the instructions.)
What happens is that the Java runtime loads that class containing the method. Then it looks for the
sin(double)
method in the class that it loaded. What typically happens is that the named method resolves to some bytecodes that are the instructions that tell the runtime what the method should do. But in the case ofsin
, the method is anative
method, and the instructions are actually native instructions that are part of one of the JVM's native libraries.It depends on the actual keywords. But generally speaking, genuine Java keywords are transformed by the compiler into a form that doesn't have a distinct / discrete representation for the individual keywords.