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 3 years have 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?