从Constructor调用阻塞方法 - Java

时间:2013-07-02 18:59:04

标签: java constructor blocking

我想知道从构造函数本身调用阻塞方法是不是一个坏主意。

我很想知道在这种情况下我们是否有任何准则/规则,我们绝不应该在构造函数中调用阻塞方法。

基本上我正在尝试这样做:

class A
{
    // Many instance variables that is to be initialized on instantiaion
    String tempVar = null;

    public A()
    {
        // Initialize all the instance variables
        tempVar=objectClassB.**callBlockingMethod**(); // this method call would return 
                                                       // some data from ClassB Object
    }

    public static void main(String args ...)
    {
        A a = new A();
        // Or should I call the blocking method call only after instantiation according
        // to any guidelines of Java pertaining to performance ?

        // IMPORTANT: It's only when the blocked method returns value , should the main
        // thread proceed as the object 'a' would be sent for further processing
    }
}
PS:呃,如果我的问题听起来很基本,我很抱歉。

1 个答案:

答案 0 :(得分:1)

我认为你可以在类A中创建一个像connect()这样的方法。在创建对象之后,你可以调用

a a =新A() A.connect()

在内部连接方法中,您可以定义阻止方法  StreamConnection con = notifier.acceptAndOpen() .....

如果您的阻止调用未在指定的时间段内返回,则考虑采用某种机制来恢复此方案