2020.3.31 Tuesday the twelfth day of registration

Error: Encoding unmapped characters of GBK
javac -encoding utf-8 CommonClassLoader.java

import java.util.Scanner;
public class HelloWorld
{
public static void main (String [] args)
{
Scanner sc = new Scanner (System.in);
System.out.println ("Please enter the first value");
int one = sc.nextInt ();
if (one> 10)
{
System.out.println (“greater than 10”);
}
}
}

The code is standardized, there can't be pinyin.

First, read the source code

Second, distributed architecture
As the business becomes more and more complex, the amount of data is getting larger and larger, and the amount of concurrency is becoming larger and larger. The single-mode architecture model can no longer correspond. As a Java back-end architect, high concurrency + high availability + Distributed architecture system of massive data is essential.

Third, performance optimization
As a back-end Java technology expert, solving performance problems really reflects the skill of an architect. Only in-depth study of the underlying principles of the JVM, Mysql underlying optimization and Tomcat tuning, to know what it is and why.

Probability JVM interview questions (including answers)
https://blog.csdn.net/Butterfly_resting/article/details/89705057?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

The keyboard is not broken, and the monthly salary is not more than ten thousand. If the mechanical keyboard does not knock, the monthly salary is only 20,000.

https://www.cnblogs.com/biehongli/p/6025954.html
—> 别 先生 <—

Published 17 original articles · praised 0 · visits 494

Guess you like

Origin blog.csdn.net/songweixun/article/details/105215664