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
What It Takes to Keep America Beautiful | Podcast | Overheard at National Geographic
When we got in and we were on the beach, the first thing you notice is the dramatic, you know, uh, sea stacks that from a distance just, you know, they look like mountain ranges almost. But they’re so close. In May 2022, National Geographic photographer S…
The Fight to Stop Illegal Bear Trafficking in Southeast Asia | National Geographic
What I’ve seen in LA is spare cages, no bigger than, uh, 2 m by 2 m by 2 m. These animals would likely be placed in those cages as cubs and spend the duration of their lives there. We’ve seen a worrying trend with the increase in captive population of wil…
Team and Execution with Sam Altman (How to Start a Startup 2014: Lecture 2)
Uh, before I jump into today’s lecture, I wanted to answer a few questions people emailed me, saying they had questions about the last lecture they ran out of time for. So if you have a question about what we covered last time, I’m welcome to answer it no…
Factors affecting acid strength | Acids and bases | AP Chemistry | Khan Academy
Factors that affect acid strength include bond polarity, bond strength, and conjugate base stability. Let’s think about a generic acid, HA, that donates a proton to water to form the hydronium ion, H3O⁺, and the conjugate base, A⁻. First, let’s consider …
BONUS VIDEO | Singular They | The parts of speech | Grammar | Khan Academy
[Voiceover] So you may have been hearing a lot of talk about this thing called singular they recently, not knowing entirely what it is or whether or not it’s okay to use in a sentence or in formal writing. Um, it’s been in the news a lot lately; you know …
Alzheimer's and the Brain
Hey, Vsauce. Michael here. If you have a watch or a clock nearby, take a look at its hour hand. It moves, completing a trip all the way around twice a day. Its motion is too slow to see, but try really look at it right now. Watch how far it travels in on…