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.
たとえば、BufferedReader クラスにいくつかの新しいメソッドを追加します。それは可能でしょうか?もしそうなら、どうすればそれを達成できますか?助言がありますか?
BufferedReader を拡張できます (たとえば)。これは、おそらく最も移植性が高く、JDK クラスを「編集」するための最も推奨される方法です。
できますが、変更が Open JDK などによって拒否された場合は、そのために JDK の別のビルドを保持する必要があります。
委任を使用して、必要な機能を備えた独自のクラスを作成することをお勧めします。