// вԶת.
class OverloadDemo {
	void test() { 
		System.out.println("No parameters");
	}
	void test(int a,int b) { // Ͳ
		System.out.println("a and b: " + a + " " + b);
	}
void test(double a) {// һ˫Ͳ
		System.out.println("Inside test(double) a: " + a);
	}
} 
class Overload {
	public static void main(String args[]) { 
	OverloadDemo ob = new OverloadDemo();
	int i = 88; 
	ob.test();
	ob.test(10,20); 
	ob.test(i); // ｫtest(double)
	ob.test(123.2); // test(double)
	}
}
