public class Love{
Public static void main(String[] args){
System.out.println('*'+'\t'+'*');
System.out.println("*"+"\t"+"*")
}
}
Running result The first line 93
9 9 9 * *
Because the first line of the "\ t 'single quotation number recognition is character data type char, the char type can be calculated, in the first line+do it+do it operator.
The second line "\t" double quotation mark is recognized as a string and the + sign is used as a connector.
//I just started to learn java. I will write some essays here. If there are any mistakes, please point them out in time.
The above is the detailed content of Detailed explanation of examples of character data type char. For more information, please follow other related articles on the PHP Chinese website!