Category: Java

23
Jun
2020

My Beautiful Crafted Java OOP

Human.java package com.zakilive; public class Human { String name; int age; int heightInInches; String eyeColor; public Human(String…

05
Mar
2020

Started Course: Java In Depth Become a Complete Java Engineer

I have started this course from Udemy and will complete soon with all my effort In Sha…

20
Dec
2019

What is this keyword in OOP

What is “this”? You may have noticed something slightly strange in our methods. Look at this one…

24
Nov
2019

Java Programming Recap In Sha Allah

27
Oct
2019

OOP concept clearings from some MOOC courses

Code: Student.java   class Student{     //variable declaration     int id;     String name;     String gender;     //method deinitions     boolean updateProfile(String newName){         name=newName;         return true;     } }   StudentTest.java class StudentTest{…

20
Jun
2017

Overriding vs. Overloading in Java

Overriding code: class Dog{ public void bark(){ System.out.println(“woof “); } } class Hound extends Dog{ public void…