Chi 5
Chi 5
geeksforgeeks
Courses 90% Refund
Tutorials
Java
Practice
Contests
Sign In
Java Arrays
Java Strings
Java OOPs
Java Collection
Java 8 Tutorial
Java Multithreading
Java Exception Handling
Java Programs
Java Project
Java Collections Interview
Java Interview Questions
Java MCQs
Spring
Spring MVC
Spring Boot
Hibernate
Illustration:
import java.util.*;
class GFG {
public static void main(String[] args)
{
arr[4] = 1;
Output
1
2
3
4
1
Implementation:
Output
10
20
30
40
50
Output Explanation: The array arr is declared as final, but the elements of an
array are changed without any problem. Arrays are objects and object variables are
always references in Java. So, when we declare an object variable as final, it
means that the variable cannot be changed to refer to anything else.
Example A:
// Program 1
// Main class
class Test {
int p = 20;
public static void main(String args[])
{
final Test t = new Test();
t.p = 30;
System.out.println(t.p);
}
}
Output
30
Example B:
// Main class
class GFG {
int p = 20;
// Main driver method
public static void main(String args[])
{
System.out.println(t1.p);
}
}
Output: Compiler Error: cannot assign a value to final variable t1
Conclusion: Above program compiles without any error and program 2 fails in
compilation. Let us discuss why the error occurred.
So a final array means that the array variable which is actually a reference to an
object, cannot be changed to refer to anything else, but the members of the array
can be modified. Let us propose an example below justifying the same.
Example:
// Main class
class GFG {
Example :
import java.util.Arrays; // Import Arrays class for toString() method
Three 90 Challenge is back on popular demand! After processing refunds worth INR
1CR+, we are back with the offer if you missed it the first time. Get 90% course
fee refund in 90 days. Avail now!
Want to be a master in Backend Development with Java for building robust and
scalable applications? Enroll in Java Backend and Development Live Course by
GeeksforGeeks to get your hands dirty with Backend Programming. Master the key Java
concepts, server-side programming, database integration, and more through hands-on
experiences and live projects. Are you new to Backend development or want to be a
Java Pro? This course equips you with all you need for building high-performance,
heavy-loaded backend systems in Java. Ready to take your Java Backend skills to the
next level? Enroll now and take your development career to sky highs.
https://media.geeksforgeeks.org/auth/avatar.png
GeeksforGeeks
79
Previous Article
Jagged Array in Java
Next Article
Reflection Array Class in Java
Read More
Down Arrow
Similar Reads
Java.util.Arrays.parallelSetAll(), Arrays.setAll() in Java
Prerequisites : Lambda Expression in Java 8IntUnaryOperator Interface
parallelSetAll and setAll are introduced in Arrays class in java 8.
parallelSetAll(): It set all the element in the specified array in parallel by the
function which compute each element. Syntax: public static void
parallelSetAll(double[] arr, IntToDoubleFunction g) Parameters :
5 min read
final vs Immutability in Java
final: In Java, final is a modifier that is used for class, method, and variable
also. When a variable is declared with the final keyword, its value can’t be
modified, essentially, a constant. Immutability: In simple terms, immutability
means unchanging overtime or being unable to be changed. In Java, we know that
String objects are immutable means
3 min read
Difference between Final and Abstract in Java
In this article, the difference between the abstract class and the final class is
discussed. Before getting into the differences, lets first understand what each of
this means. Final Class: A class which is declared with the "Final" keyword is
known as the final class. The final keyword is used to finalize the implementations
of the classes, the me
4 min read
Why a Constructor can not be final, static or abstract in Java?
Prerequisite: Inheritance in Java Constructor in java is a special type of method
which is different from normal java methods/ordinary methods. Constructors are used
to initialize an object. Automatically a constructor is called when an object of a
class is created. It is syntactically similar to a method but it has the same name
as its class and a
6 min read
Can We Override Final Method in Java?
A method in a subclass is said to Override a method in its superclass if that
method has a signature identical to a method in its superclass. When this method is
called by an object of the subclass, then always the Overridden version will be
called. In other words, the method which was Overridden in the superclass will
become hidden. The JVM has 2
3 min read
Private vs Final Access Modifier in Java
Whenever we are writing our classes we have to provide some information about our
classes to the JVM like whether this class can be accessed from anywhere or not,
whether child class creation is possible or not, whether object creation is
possible or not etc. we can specify this information by using an appropriate
keyword in java called access modi
3 min read
Private vs Protected vs Final Access Modifier in Java
Whenever we are writing our classes, we have to provide some information about our
classes to the JVM like whether this class can be accessed from anywhere or not,
whether child class creation is possible or not, whether object creation is
possible or not, etc. we can specify this information by using an appropriate
keyword in java called access mo
5 min read
Can We Extend final Method in Java?
Final method in java can be extended but alongside the main concept to be taken
into consideration is that extend means that you can extend that particular class
or not which is having final method, but you can not override that final method.
One more case where you can not extend that final method is the class that contains
the final method is als
3 min read
Effectively Final Variable in Java with Examples
A final variable is a variable that is declared with a keyword known as 'final'.
Example: final int number; number = 77; The Effectively Final variable is a local
variable that follows the following properties are listed below as follows: Not
defined as finalAssigned to ONLY once. Any local variable or parameter that's
assigned a worth just one occ
4 min read
Protected vs Final Access Modifier in Java
Whenever we are writing our classes, we have to provide some information about our
classes to the JVM like whether this class can be accessed from anywhere or not,
whether child class creation is possible or not, whether object creation is
possible or not, etc. we can specify this information by using an appropriate
keyword in java called access mo
5 min read
Article Tags :
Java
Java-Array-Programs
Java-Arrays
Practice Tags :
Java
three90RightbarBannerImg
course-img
215k+ interested Geeks
Master Java Programming - Complete Beginner to Advanced
Explore
course-img
214k+ interested Geeks
JAVA Backend Development - Live
Explore
course-img
30k+ interested Geeks
Manual to Automation Testing: A QA Engineer's Guide
Explore
geeksforgeeks-footer-logo
Corporate & Communications Address:- A-143, 9th Floor, Sovereign Corporate Tower,
Sector- 136, Noida, Uttar Pradesh (201305) | Registered Address:- K 061, Tower K,
Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh,
201305
GFG App on Play Store
GFG App on App Store
Company
About Us
Legal
Careers
In Media
Contact Us
Advertise with us
GFG Corporate Solution
Placement Training Program
Explore
Job-A-Thon Hiring Challenge
Hack-A-Thon
GfG Weekly Contest
Offline Classes (Delhi/NCR)
DSA in JAVA/C++
Master System Design
Master CP
GeeksforGeeks Videos
Geeks Community
Languages
Python
Java
C++
PHP
GoLang
SQL
R Language
Android Tutorial
DSA
Data Structures
Algorithms
DSA for Beginners
Basic DSA Problems
DSA Roadmap
DSA Interview Questions
Competitive Programming
Data Science & ML
Data Science With Python
Data Science For Beginner
Machine Learning Tutorial
ML Maths
Data Visualisation Tutorial
Pandas Tutorial
NumPy Tutorial
NLP Tutorial
Deep Learning Tutorial
Web Technologies
HTML
CSS
JavaScript
TypeScript
ReactJS
NextJS
NodeJs
Bootstrap
Tailwind CSS
Python Tutorial
Python Programming Examples
Django Tutorial
Python Projects
Python Tkinter
Web Scraping
OpenCV Tutorial
Python Interview Question
Computer Science
GATE CS Notes
Operating Systems
Computer Network
Database Management System
Software Engineering
Digital Logic Design
Engineering Maths
DevOps
Git
AWS
Docker
Kubernetes
Azure
GCP
DevOps Roadmap
System Design
High Level Design
Low Level Design
UML Diagrams
Interview Guide
Design Patterns
OOAD
System Design Bootcamp
Interview Questions
School Subjects
Mathematics
Physics
Chemistry
Biology
Social Science
English Grammar
Commerce
Accountancy
Business Studies
Economics
Management
HR Management
Finance
Income Tax
Databases
SQL
MYSQL
PostgreSQL
PL/SQL
MongoDB
Preparation Corner
Company-Wise Recruitment Process
Resume Templates
Aptitude Preparation
Puzzles
Company-Wise Preparation
Companies
Colleges
Competitive Exams
JEE Advanced
UGC NET
UPSC
SSC CGL
SBI PO
SBI Clerk
IBPS PO
IBPS Clerk
More Tutorials
Software Development
Software Testing
Product Management
Project Management
Linux
Excel
All Cheat Sheets
Recent Articles
Free Online Tools
Typing Test
Image Editor
Code Formatters
Code Converters
Currency Converter
Random Number Generator
Random Password Generator
Write & Earn
Write an Article
Improve an Article
Pick Topics to Write
Share your Experiences
Internships
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By
using our site, you acknowledge that you have read and understood our Cookie Policy
& Privacy Policy
Got It !
Lightbox