answersLogoWhite

0

becaus he becaus he

User Avatar

Joesph Kling

Lvl 10
3y ago

What else can I help you with?

Related Questions

Why did the doctor allow two-bit and ponyboy to visit johnny?

They were allowed to visit Johnny because they were his friends and his "family".


What is precor and what is does it do to your body?

It would be best to consult with a doctor. This will allow your doctor to evaluate this and find out why it may be occuring. The doctor can also provide solutions that can help.


Does workers compensation allow you to seek a second opinion in Mississippi Also can you choose the doctor that give the second opinion Does that doctor have to be in a network?

Does workers compensation allow you to seek a second opinion in Alabama.


What are the typical prices for braces?

It would be best to consult with a doctor. This will allow your doctor to evaluate this and find out why it may be occuring. The doctor can also provide solutions that can help.


Do you have to go to a workers comp doctor?

THis question can not be answered without knowing the state. Every state has different w/c laws, some allow you to see your own doctor, some require you to see a doctor chosen by the employer, some allow you to see your doctor for a time, then switch to one required by your employer.


How do I maintain a healthy blood pressure?

It would be best to consult with a doctor. This will allow your doctor to evaluate this and find out why it may be occuring. The doctor can also provide solutions that can help.


Is heart disease hereditary in women?

It would be best to consult with a doctor. This will allow your doctor to evaluate this and find out why it may be occuring. The doctor can also provide solutions that can help.


Are there ways to help Cardiomyopathy ?

It would be best to consult with a doctor. This will allow your doctor to evaluate yourself and find out why it may be occuring. The doctor can also provide solutions that can help.


What is an adula?

An Adula is there with you at childbirth to allow the doctor to do his/her work.to support the mother to be basically.


what are some heart attack symptoms in women?

It would be best to consult with a doctor. This will allow your doctor to evaluate this and find out why it may be occuring. The doctor can also provide solutions that can help.


What are some of the signs of heart disease?

It would be best to consult with a doctor. This will allow your doctor to evaluate your heart and find out why it may be occuring. The doctor can also provide solutions that can help.


Why method of java must be implemented in the class definition itself?

I think that the reason this question has not been answered is because nobody understands the question!!! What exactly are you asking???So, I will try to answer the question, but only in a very general sort of way.Let's create an example class called "Jonny."The bear minimum of creating the class Jonny would be the following:public class Jonny{}This text would, of course, need to be saved in a file named Jonny.java, and would be compiled into the Jonny class.Now, if we are going to get into methods, lets start with a simple constructor:public class Jonny{public Jonny(){}}Now, to the slightly trained eye, this statement is basically the same as the original without the constructor, because Java automatically provides you with a default empty constructor.The great thing about constructors, however, is that we can use them to allow fast initializations of Objects (Which every object extends). So we can allow the user of our new class to create a Jonny with other parameters as well.Let's make a Jonny extend JFrame, and then allow the user to initialize the frames name within the constructor:public class Jonny extends JFrame{public Jonny(String frameName){this.setTitle(frameName);}}Wow, that wasn't too hard was it.I suspect that this is the method you were speaking of when asking this question, so the answer is that it is not really a "method," but is actually a CONSTRUCTOR, which creates the object itself. We can create actual methods as well within our new class, though:public class Jonny extends JFrame{public Jonny(String frameName){this.setTitle(frameName);}public void showTheThingAlready(){this.pack();this.setVisible(true);}}So there you have it. The answer is that it is not a method, but a constructor. It is not required to explicitly have a constructor, but they can be very useful when dealing with new objects. I often allow myself to have several different constructors, allowing me different ways to create objects and initiallize them at the same time. It is a fairly common practice in Java to have many methods named the same thing as well, but with different types of input parameters.I hope I have answered your question.James