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.
現在、私は以下のコードを持っています。
String[] ans = {"Yes","No"}; option = questionAsk("Are you sure?",ans);
'ans'の定義を関数の呼び出しに貼り付けて変更しようとしましたが、これら2行を1つにする方法が見つからないようです。
メソッドを呼び出すときに配列を定義できます。
option = questionAsk("Are you sure?", new String[]{"Yes","No"});