目前知道 public===公开, class==类,static==静态 void==无返回值,final===常量,System.out.println===调试输出
但经常会遇到带有NEW的,不知如何翻译到火山中
比如:HikariConfig config = new HikariConfig();
List<Student> students = new ArrayList<>();
DataSource ds = new HikariDataSource(config);
var std = new Student();
老师们能不能解惑下,这种要如何写成火山的代码