0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

プログラムのメモリ管理領域

Posted at

静的領域

  • プログラム開始時に確保され、以降プログラムが終了するまで、配置が固定される領域
  • グローバル変数とプログラムを実行可能にした形式に変換したコード情報が格納される。

ヒープ領域

  • プログラム実行時に動的に確保するための領域
  • インスタンス生成のたびに使われる領域でもある。

スタック領域

  • スレッドの制御のために使う領域。
  • 呼び出されたサブルーチンの引数、ローカル変数を格納される。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?