0

私はJavaスレッドが初めてです。私の質問は:

Resultset rs オブジェクトをパラメーターとしてスレッドに渡すことはできますか。

Googleで検索しましたが、文字列、intを渡す方法がわかりました。しかし、オブジェクトパラメータの使用方法がわかりません。

私のサンプルプログラムは次のとおりです。

public class dataimport
{
    public dataimport()
    {
        connect(); //this function will connect to database and execute query
    }   

    private void connect()
    {
        /* Connect database
        str="SELECT * FROM tablename"; 
        rs1=statement.executeQuery(str);

        while (rs1.next())
        { 
            /* here each record will pass to each thread run() method*/ 
        }   
    }
}

誰かこれを手伝ってください。

4

1 に答える 1