同时在单独的类中调用两个单独的方法

时间:2015-09-09 09:13:20

标签: java

element.getAttribute("textContent")

在上面的代码中,我想同时调用show()和display()。这两个类是相互独立的。它可以在java.if中给我解决方案。

1 个答案:

答案 0 :(得分:1)

使用thead进行分类。

创建两个Runnable并在线程中调用它们。

public class Result{
    public static void main(String args[]){

        Thread t = new Thread(new Runnable() {

            @Override
            public void run() {
                new A().display();
            }
        });

        Thread t1 = new Thread(new Runnable() {

            @Override
            public void run() {
                new B().show();
            }
        });

        t.start();
        t1.start();
    }

}

class A{
    public void display(){
        System.out.println("This is class A");
    }
}
class B{
    public void show(){
        System.out.println("This is class B");
    }
}