literal:In computer science, a literal is a notation for representing a fixed value in source code
在源码中,表示一个固定值,一个标记。
1、An string literal value String s="a";2、An character literal value char s='a';
3、An int literal value int a=1;
例如:Constant pool tags(常量池标签页)
Entry Type Tag Value Description
CONSTANT_Integer 3 An int literal value
CONSTANT_Float 4 A float literal value
CONSTANT_Long 5 A long literal value
CONSTANT_Double 6 A double literal value
CONSTANT_String 8 A String literal value
文章:https://en.wikipedia.org/wiki/Literal_(computer_programming)