Java Constructors

This week we’ll cover some topics that are not too much related, but all very important to address. We’ll have a look at the basics of constructors. And two non-access modifiers: static and abstract.
Topics
- Constructors
- Static
- Abstract
Content
- Constructors
www.w3schools.com/java/java_c...
www.javatpoint.com/java-const...
- Static
www.geeksforgeeks.org/static-...
www.edureka.co/blog/static-ke...
- Abstract
www.tutorialspoint.com/abstra...
Questions
If you have any questions about the content, please write them under the corresponding KZread video. The questions that are asked most will be discussed in the Saturday session. You can also ask your direct team members and the other participants. Please help each other as much as possible, if you see a question you know the answer too, please answer 😊 We’re doing this together!
Homework
- Continue working from last week’s project
- Add constructors to your classes so you can initialize fields with the constructor
- Do any of your classes need to be abstract?
- Do you need any static methods in your project? Why?

Пікірлер: 2

  • @immythic8351
    @immythic8351 Жыл бұрын

    When you create the instance of a class with the default constructor, you are getting back to the stack memory the reference to the object created, right?

  • @BrightBoost

    @BrightBoost

    Жыл бұрын

    Yes!