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.
私はグローバル変数を持っていますint NUM = 4;。gdbを使用して動作中のアプリケーションに接続すると、ハングします。今、私はの価値を得て、NUMそれを変えたいと思います。これを行う方法?
int NUM = 4;
NUM
たぶん、とのような他のデータ型の可能なchar[]例std::string?
char[]
std::string
ありがとう
gdbでは次を使用する必要があります
print INT
INTとの値を表示します
set variable INT = value
INTを値に等しく設定します。アレイでの使用
set variable array_variable[element_index] = value
element_index配列のインデックスにある要素array_variableをvalueに設定します。
element_index
array_variable