---
title: "Can you declare an interface method static?"  
description: "Can you declare an interface method static?"  
author: "Anonymous User"  
published: 2015-04-21  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/2413/can-you-declare-an-interface-method-static  
category: "java"  
tags: ["java", "interface"]  
reading_time: 1 minute  

---

# Can you declare an interface method static?

No, because methods of an interface is abstract by default, and static and abstract keywords can't be used together.

## Answers

### Answer by Anonymous User

No, because methods of an interface is abstract by default, and static and abstract keywords can't be used together.


---

Original Source: https://www.mindstick.com/interview/2413/can-you-declare-an-interface-method-static

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
