---
title: "Final Keyword - AP Computer Science A"
description: "Once assigned or declared as final, their values or definitions cannot be changed."
canonical: "https://fiveable.me/ap-comp-sci-a/key-terms/final-keyword"
type: "key-term"
subject: "AP Computer Science A"
unit: "Unit 3"
---

# Final Keyword - AP Computer Science A

## Definition

Once assigned or declared as final, their values or definitions cannot be changed.

## Related Study Guides

- [3.7 Static Variables and Methods](/ap-comp-sci-a/unit-3/static-variables-and-methods/study-guide/zzhHVbXBRCZQ7ng3EeWX)

## Review

### Related Terms

- Constant Variable: A constant variable is declared using the final keyword and represents fixed values that cannot be modified during program execution. They are typically used for storing values that should not change throughout the program.
- Immutable Object: An immutable object is an object whose state cannot be modified after it is created. The final keyword is often used to create immutable objects by making their fields private and final, and not providing any setter methods.
