yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Java Lesson 16 | Final and Static Methods


2m read
·Nov 3, 2024

Hey, this is Jake with Maads 101. It's going to be another Java tutorial.

Today, I'm going to talk about two more different kinds of methods. I talked about abstract methods in the last tutorial, and this is going to be relatively brief, but I'm going to talk about static and final methods.

I already talked about static and final variables, so if you remember, a final variable could not be reassigned, and a final method cannot be overwritten. That's final! This is the method you can't override. To do that, you would just put final before it, like final public void print(), no parameters, and all right! That method could not be overwritten. I'm not going to go through a whole, you know, making a superclass and this and that to prove it, but just know it can't be overwritten.

The next one I'm going to talk about is a static method. So, let's say I had a method in this class. This is going to be an example of it just in this main class, and I had, like, and it was outside the main method: public void print(). I tried to call print, and I'm getting an error here because I need an object to call the method.

I could do this: MacHeads m = new MacHeads(); and I would be creating an object of this class, the MacHeads type, and then do m.print(). Or I can do something much simpler, which is make it static. So, public static void print()—and public static means I do not need an object to call this method.

So, if I just print it out, "Hello," and that's why it makes a lot of sense if this is static. But public static void print(), this public static void main(), and then I can just do print()—no errors because it's static.

I believe you can also put static before public; it doesn't matter. But yeah, so I'll just do public static, but you can put it before, so public static void print(), and I don't need an object to call this method because static methods don't need objects to be called. And there it goes! It prints "Hello."

So, I just want to talk about what's coming up next. In the next couple of tutorials—or yeah, I'm going to be talking about GUI, graphical user interface, like, you know, windows and buttons and graphics and stuff like that.

I didn't cover all of the Java basics, but I covered a lot of them, and what you'll need to know to start making GUI. The only reason I actually started making these tutorials on the basics was so that I could eventually start making Java GUI tutorials.

So, the next tutorial is going to be the first GUI tutorial, and I'm just going to be talking about creating a window and a few different ways to do that.

So, see you next time!

More Articles

View All
Meaning of Lagrange multiplier
Hey folks, in this video, I want to show you something pretty interesting about these Lagrange multipliers that we’ve been studying. So the first portion, I’m just going to kind of get the setup, which is a lot of review from what we’ve seen already. But…
Is rising inequality necessarily bad
The word inequality, by its very nature, at least sounds a little bit unfair. Obviously, everyone’s not getting the same thing; they’re not getting the same income, or they don’t have the same wealth. But a question needs to be asked: Is this necessarily …
5 Financial Habits To Do Before 30
But you want to immune confidence and basically say to me with your eyes, “I’m ready to rumble.” You want a rock? Bring it on! I can tell right there from the aura, the vibe. You haven’t even said a word yet, and I know right there if you’re a winner or a…
Voter turnout | Political participation | US government and civics | Khan Academy
What we’re going to talk about in this video is voter turnout, which is a way of thinking about how many of the people who could vote actually do vote. It’s often expressed as a number, as a percentage, where you have the number who vote over the number o…
Getting Swarmy | Live Free or Die
It’s a good-sized swarm. God, here they go! Jesus, look at them all! They’re still coming out of the entrance; that’s crazy! It’s honey season in the mountains of North Carolina. Homesteaders Tony and Amelia are banking on a major harvest this year. “I c…
Stop Caring What People Think | The Stoic Way
It never ceases to amaze me. We all love ourselves more than other people, but care more about their opinion than our own. People spend so much energy on worrying about what other people think about them. The thing is: it’s a huge waste of time; especiall…