2022年5月22日

C#索引器

摘要: C#索引器 第一次听也 好神奇的说 我还是太菜啦呜呜呜 Java也有哦 封装📦--索引器 class Person { private Person[] friends; //定义一个对象数组 public Person this[int index] //一个索引器 { get { return frien 阅读全文

posted @ 2022-05-22 23:39 AcherLoveCode 阅读(36) 评论(0) 推荐(0) 编辑

C++常量复习

摘要: C++常量复习 const定义常量 **const是constant**的简写,只要一个变量前面用const来修饰,就意味着该变量里的数据可以被访问,不能被修改(readonly) const char*, char const*的区别 Bjarne 在他的 The C++ Programming Language 阅读全文

posted @ 2022-05-22 09:35 AcherLoveCode 阅读(23) 评论(0) 推荐(0) 编辑

导航