Skip to main content

Write a java program which has various types of constructor and overload these constructors when the object is being created of that class.

Write a java program which has various types of constructor and overload these constructors when the object is being created of that class.




class variousConstructor { 
public static void main(String[] args) { 
constructor c1 = new constructor(); 
constructor c2 = new constructor(23); 
constructor c3 = new constructor(45.6); 
class constructor { 
public constructor() { 
System.out.println("It's 1st constractor."); 
public constructor(int n1) { 
System.out.println("It's constractor with integer variable which is " + n1); 
public constructor(double d1) { 
System.out.println("it's a constractor with double variable which is " + d1); 
public constructor(float f1) { 
System.out.println("It's a constractor with float variable which is " + f1); 
}



OUTPUT:

It's 1st constractor.
it's a constractor with double variable which is 23
It's a constractor with float variable which is 45.6


Comments

Popular posts from this blog

Palindrome

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