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.
netbeans IDE で JFrame を作成しようとしましたが、すべてのコードにエラーはありません。アプリケーションを実行しようとすると、フレームが表示されません。何が問題ですか?
このコードを書くのを忘れたと思います:
setVisible(true);
する前に
次のようなコンストラクターを作成したことを確認してください。
public YourFrame(){ setVisible(true); }
これがお役に立てば幸いです。