Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはおそらく簡単な答えを持つ簡単な質問ですが、他のどこにも答えが見つからないようです.
1 つのクラスで RandomAccessFile を使用して開いてさまざまなことを行う入力ファイルがあります。そのファイルを別のクラスに渡したいので、それでさまざまなことを行うこともできます。ただし、これがどのように行われるかはわかりません。
セッターを使用して、 のインスタンスをRandomAccessFile2 番目のクラス インスタンスに渡します。
RandomAccessFile
myClassInstance.setFile(RandomAccessFile myFile);
ファイルを他のクラスのメソッドまたはコンストラクターへのパラメーターにします。例えば
public void displayFirstLine (RandomAccessFile myFile) { //your code here }