摘要:
# Other default tuning values# MySQL Server Instance Configuration File# # Generated by the MySQL Server Instance Configuration Wizard### Installation 阅读全文
摘要:
public class OverLoadTest2 { public static int add(int a, int b) { // 定义一个方法 return a + b; } public static double add(double a, double b) { // 与第一个方法相 阅读全文
摘要:
class Shape { } // 图形类 class Square extends Shape { } // 正方形类继承图形类 class Circular extends Shape { } // 圆形类继承图形类 public class Demo6 { public static voi 阅读全文
摘要:
public class Student { String name; int age; public Student(String name, int age) { this.name = name; this.age = age; } public String toString() { ret 阅读全文