Kali Baranwalkalibaranwal.hashnode.dev·Apr 30, 2024Exploring OOP Fundamentals: Part 4 BreakdownTHIS POINTER Its is a keyword which points to the objects which invokes the member function. It is used for return object. CODE: class A{ int a; public: void setdata(int a){ this->a=a; } void getdata(){ cout<<"the...friend function
Nibu B Johnnibu.hashnode.dev·Feb 18, 2024Mastering Dart: A Deep Dive into 'static' KeywordIntroduction Welcome to our comprehensive guide on mastering Dart programming! In this blog post, we're about to dive deeply into one of Dart's essential keywords: 'static'. Don't worry if you're new to programming or if you find these concepts a bit...Dart
Pratik Upretipratikupreti-1701389516184.hashnode.dev·Jan 10, 2024Mastering the static Keyword in Java: A Beginner's Guide to Expert UnderstandingIntroduction Welcome to the world of Java programming! If you've been curious about what the static keyword does in Java, you're in the right place. This guide is tailored for beginners but packed with enough detail to elevate your understanding to a...A Comprehensive Guide to Javawhen to use static keyword in java
Nikhil Abhiman Jadhavtechnikio.hashnode.dev·Jan 8, 2024"The Silent Dynamo: Exploring the Impact of 'Static' in Java's Code Symphony"1. Introduction: Greetings Java enthusiasts! Today, we're venturing into the realm of the "static" keyword—a versatile tool that adds a touch of magic to your code. Buckle up as we unravel the mysteries and potential of this keyword in the Java prog...1 liketechnikio
Sreejit Senguptosreesen.hashnode.dev·Aug 20, 2023Packages and Static Keyword in Java - OOP 2Introduction👋🏻 Welcome back to the Object Oriented Programming series, hope you are doing great. This will be the second blog in the OOP blog series and in this article, we will be talking about packages and static keyword in Java. In the last blog...Object Oriented Programming in JavaObject Oriented Programming
Amol Nagoseamolnagose.hashnode.dev·Mar 19, 2023Static Keyword In JavaWhile writing java code we are using static keywords. Yes, it is required. But, it is more confusing for beginners. they get confused about static keywords. Here, I will show how to use, and when to use i.e in and out of static keywords. Consider tha...61 readsstatic keyword
Xander Billaxanderbilla.hashnode.dev·Aug 3, 2018Variables, Access modifiers, static Keyword | JavaVariables To play with data we need to store the data. To store the data we need some container and those containers are called variables. Variables are the container that is stored for hold some values of a specific data type. Variables are divided ...Javavariables