0% found this document useful (0 votes)
15 views10 pages

Chi 5

Uploaded by

raroy67751
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
15 views10 pages

Chi 5

Uploaded by

raroy67751
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 10

Skip to content

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

Content Improvement Event


Share Your Experiences
Java Tutorial
Overview of Java
Basics of Java
Input/Output in Java
Flow Control in Java
Operators in Java
Strings in Java
Arrays in Java
Arrays in Java
Arrays class in Java
Multidimensional Arrays in Java
Different Ways To Declare And Initialize 2-D Array in Java
Jagged Array in Java
Final Arrays in Java
Reflection Array Class in Java
util.Arrays vs reflect.Array in Java with Examples
OOPS in Java
Inheritance in Java
Abstraction in Java
Encapsulation in Java
Polymorphism in Java
Constructors in Java
Methods in Java
Interfaces in Java
Wrapper Classes in Java
Keywords in Java
Access Modifiers in Java
Memory Allocation in Java
Classes of Java
Packages in Java
Java Collection Tutorial
Exception Handling in Java
Multithreading in Java
Synchronization in Java
File Handling in Java
Java Regex
Java IO
Java Networking
JDBC - Java Database Connectivity
Java 8 Features - Complete Tutorial
Java Backend DevelopmentCourse
Final Arrays in Java
Last Updated : 11 Jul, 2024
As we all know final variable declared can only be initialized once whereas the
reference variable once declared final can never be reassigned as it will start
referring to another object which makes usage of the final impracticable. But note
here that with final we are bound not to refer to another object but within the
object data can be changed which means we can change the state of the object but
not reference. So, as we all know that arrays are also an object so final arrays
come into play. The same concept does apply to final arrays that are we can not
make the final array refer to some other array but the data within an array that is
made final can be changed/manipulated.

Illustration:

// Java Program to Illustrate Final Arrays


// Can Be Reassigned But Not Re-referred

import java.util.*;

class GFG {
public static void main(String[] args)
{

final int[] arr = { 1, 2, 3, 4, 5 };

arr[4] = 1;

for (int i = 0; i < arr.length; i++) {


System.out.println(arr[i]);
}
}
}

Output
1
2
3
4
1
Implementation:

// Java Program to Illustrate Final Arrays

// Importing required classes


import java.util.*;
// Main class
class GFG {

// Main driver method


public static void main(String args[])
{

// Declaring a final array


final int arr[] = { 1, 2, 3, 4, 5 };

// Iterating over integer array


for (int i = 0; i < arr.length; i++) {
arr[i] = arr[i] * 10;
System.out.println(arr[i]);
}
}
}

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:

// Java Program to Illustrate Final Arrays


// Where Compiler Error Is Thrown

// Main class
class GFG {

int p = 20;
// Main driver method
public static void main(String args[])
{

// Creating objects of above class


final GFG t1 = new GFG();
GFG t2 = new GFG();

// Assigning values into other objects


t1 = t2;

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:

// Java Program to Illustrate Members in Final Array


// Can be Modified

// Main class
class GFG {

// Main driver method


public static void main(String args[])
{
// Declaring a final array
final int arr1[] = { 1, 2, 3, 4, 5 };

// Declaring normal integer array


int arr2[] = { 10, 20, 30, 40, 50 };

// Assigning values to each other


arr2 = arr1;
arr1 = arr2;

// Now iterating over normal integer array


for (int i = 0; i < arr2.length; i++)

// Printing the elements of above array


System.out.println(arr2[i]);
}
}
Output:

Example :
import java.util.Arrays; // Import Arrays class for toString() method

public class FinalArrayExample {

public static void main(String[] args)


{
final int[] numbers = { 1, 2, 3, 4, 5 };
// Attempting to reassign the array reference will
// result in a compilation error: numbers = new
// int[] {6, 7, 8, 9, 10};

// However, individual elements of the array can


// still be modified:
numbers[0] = 10;
System.out.println(
"Array after modifying first element: "
+ Arrays.toString(numbers));
}
}
Output:

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

You might also like