---
title: "Can you use abstract and final both with a method in java?"  
description: "Can you use abstract and final both with a method in java?"  
author: "Anonymous User"  
published: 2015-04-03  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2396/can-you-use-abstract-and-final-both-with-a-method-in-java  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# Can you use abstract and final both with a method in java?

No, because abstract method needs to be overridden whereas you can't override final method.

## Answers

### Answer by Anonymous User

No, because abstract method needs to be overridden whereas you can't override final method.


---

Original Source: https://www.mindstick.com/interview/2396/can-you-use-abstract-and-final-both-with-a-method-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
