大约有 7,000 项符合查询结果(耗时:0.0088秒) [XML]

https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注IT技能提升

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注IT技能提升

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注C++内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注C++内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注C++内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/te... 

C#对象序列化与反序列化 - 更多技术 - 清泛网移动版 - 专注C/C++及内核技术

... private string Name;//姓名 private bool Sex;//性别,是否是男 public Person(string name, bool sex) { this.Name = name; this.Sex = sex; } public override string ToString() { return "姓名:...
https://www.tsingfun.com/it/os... 

内存优化总结:ptmalloc、tcmalloc和jemalloc - 操作系统(内核) - 清泛网 - ...

... 当某个线程调用malloc的时候,会先查看线程私有变量中是否已经存在一个分配区,如果存在则尝试加锁,如果加锁失败则遍历arena链表试图获取一个没加锁的arena, 如果依然获取不到则创建一个新的非主分配区。 free()的时候也...
https://www.tsingfun.com/it/cpp/1352.html 

三个退出程序消息:WM_CLOSE、WM_DESTROY、WM_QUIT区别 - C/C++ - 清泛网 -...

...可以不让DefWindowProc处理,而是自己处理,例如询问用户是否保存更改等。如果用户选择“取消”,你忽略此消息,那么程序照常运行;如果用户确认要退出,你就调用DestroyWindow。 WM_DESTROY: 接下来,DestroyWindow完成窗口的清理工...