Non-static method within Static method in Java

0 votes

Why I can't call a non-static method from a static class? I am getting the below error when I try.

Cannot make a static reference to the non-static method methodName() from the type playback

Can someone explain the process of invoking a non-static method?

Sep 28, 2018 in Java by misc.edu04
• 1,450 points
958 views

1 answer to this question.

0 votes

As per my knowledge, you are getting this error because the only way to call a non-static method from a static method is through an instance of the class containing that non-static method. If you go by the definition, a non-static method is one that is called ON an instance of some class, on the other hand, a static method belongs to the class itself.

answered Sep 28, 2018 by anto.trigg4
• 3,440 points

Related Questions In Java

0 votes
1 answer

Why the main() method in Java is always static?

As you might know, static here is ...READ MORE

answered May 9, 2018 in Java by geek.erkami
• 2,680 points
1,810 views
0 votes
1 answer

Overriding private or static method in Java

You cannot override a private or static ...READ MORE

answered Jul 31, 2018 in Java by code.reaper12
• 3,500 points
13,303 views
0 votes
1 answer

Why main method is static in Java?

In Java, the `main` method is required ...READ MORE

answered Oct 19 in Java by anonymous
• 3,180 points

edited Oct 19 by anonymous 128 views
+1 vote
2 answers

How to generate random integers within specific range in Java?

You can achieve that concisely in Java: Random ...READ MORE

answered Jul 25, 2018 in Java by samarth295
• 2,220 points
863 views
0 votes
2 answers

Does Java allow to create static classes?

Java has "static nested classes", but they ...READ MORE

answered Sep 5, 2018 in Java by Sushmita
• 6,910 points
782 views
0 votes
2 answers
0 votes
2 answers

Why it is not possible to define a static method in a Java interface?

Interfaces are concerned with polymorphism which is ...READ MORE

answered Aug 27, 2019 in Java by Sirajul
• 59,250 points
1,355 views
0 votes
1 answer

Can't access static fields in inner classes in Java

Well, the major idea behind this concept ...READ MORE

answered Oct 9, 2018 in Java by anto.trigg4
• 3,440 points
1,392 views
+1 vote
2 answers

Retrieve all the implementations of an interface in Java

Take a look to this example: https://github.com/burningwave/co ...READ MORE

answered Dec 21, 2019 in Java by Roberto
• 460 points

edited Jul 7, 2020 by Roberto 35,279 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP