Online Java Compiler By
JavaTpoint.com
public class InstanceMethodReference2 { public void printnMsg(){ System.out.println("Hello, this is instance method"); } public static void main(String[] args) { Thread t2=new Thread(new InstanceMethodReference2()::printnMsg); t2.start(); } }
Output