Skip to main content

four methods overload these methods

Write a program in java which has the following classes and methods: 
Class : OverloadDemo
Methods : test()
Declare four methods with the same name “test()” and overload these methods




class OverloadDemo{ 
public void test(){ 
System.out.println("It's a test method for null."); 
public void test(int n){ 
System.out.println("It's a test method for displaying the int value "+n); 
public void test(double d){ 
System.out.println("It's a test method for displaying the double value "+d); 
public void test(String s){ 
System.out.println("It's a test method for displaying the String "+s); 
class overClass{ 
public static void main(String[] args) { 
OverloadDemo old = new OverloadDemo(); 
old.test(); 
old.test(12); 
old.test(25.35); 
old.test("Subham"); 
}


OUTPUT:

It's a test method for null.
It's a test method for displaying the int value 12
It's a test method for displaying the double value 25.35
It's a test method for displaying the String Subham


Comments

Popular posts from this blog

Palindrome

প্যালিনড্রোম (অর্থাৎ সামনে থেকে এবং পিছন থেকে সমান.উভয় দিক থেকে পড়লে একই!)  (ক) বাংলায় প্যালিনড্রোম বাক্য :-   সিমার মাসি   বল খেলব   বই চাইব   ঘুরবে রঘু    নাম লেখালেম না    বিকল্প কবি   তুমি কি মিতু ?   মার কথা থাক রমা   কীর্তন মঞ্চ পরে পঞ্চম নর্তকী      কাক কাঁদে কাঁক কা   চেনা সে ছেলে বলেছে সে নাচে    তাল বনে নেব লতা    চার সের চা   ঠাকুরদাদার কুঠা   খা সমস্ত রুটি রুস্তম সখা   না না কেনা না।   না বললে লব না   ওর মা আজ আমারও   বিরহে রাধা নয়ন ধারা হেরবি   থাক রবি কবির কথা   মামাতো মামা   কাকা তো কাকা   রবীন দা দানবীর। (খ) বাংলায় প্যালিনড্রোম নাম :-   নিধুরাম রাধুনি   সুবল লাল বসু   রমা কান্ত কামার   সদানন দাস   রায়মণি ময়রা   হারান রাহা     ইলু দলুই   সুবর্ণা বসু   সদাই দাস (গ) বাংলায় প্যালিনড্রোম শব্দ :- মরম, মলম, দরদ, জলজ, বনমানব, নবজীবন, সহিস, কালিকা, সরেস, তফাত, বাহবা, সন্ন্যাস,...