エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
encapsulation - Keep your privates… private - fields, properties, getter, setter - 計算機科学のブログ
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
encapsulation - Keep your privates… private - fields, properties, getter, setter - 計算機科学のブログ
Head First C#: A Learner’s Guide to Real-World Programming with C# and .NET Core (Andrew Stellman... Head First C#: A Learner’s Guide to Real-World Programming with C# and .NET Core (Andrew Stellman(著)、Jennifer Greene(著)、O’Reilly Media)のChapter 5(encapsulation - Keep your privates… private)、p.267(Exercise)の解答を求めてみる。 コード SwordDamage.cs using System; namespace BlazorSwordDamage { public class SwordDamage { private const int BASE_DAMAGE = 3; private const int FLAME_DAMAGE = 2; private int roll; priv