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.
EclipseでC++を使用しています。Borlandコンパイラでは、getch()関数を使用して、入力内容を表示せずにユーザー入力を取得しました。
getch()関数はEclipseでは機能しません。
ユーザーが入力した記号を画面に表示せずにユーザー入力を取得する別の方法はありますか?
Borland はgetch()、MS-DOS との下位互換性のために CRT ライブラリに含まれています。
getch()
Win32 API の単なるラッパーです。Borland は通常、コンパイラに CRT ソース コードを同梱しているので、そこでどのように実装されているかを確認できます。