Answers for "we can have static method implementation in interface"

2

can interface have static methods

no, interfaces cannot have static or final methods.
Posted by: Guest on September-13-2021
0

How many static methods can an interface have?

package com.journaldev.java8.staticmethod;

public class MyDataImpl implements MyData {

	public boolean isNull(String str) {
		System.out.println("Impl Null Check");

		return str == null ? true : false;
	}
	
	public static void main(String args[]){
		MyDataImpl obj = new MyDataImpl();
		obj.print("");
		obj.isNull("abc");
	}
}
Posted by: Guest on March-24-2020

Code answers related to "we can have static method implementation in interface"

Browse Popular Code Answers by Language