caller.java Source code

Java tutorial

Introduction

Here is the source code for caller.java

Source

class caller implements Runnable {
    String msg;

    public caller(String s) {
        msg = s;
        new Thread(this).start();
    }

    public void run() {
        System.out.println("run");
    }
}

public class Main {
    public static void main(String args[]) {
        new caller("Hello");
    }
}