上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 26 下一页
摘要: 条件运算符 条件运算符 x ? y :z 如果x为true,则结果为y, 否则结果为z x为判断式,如果x为正确,则结果为y。如果x为错误,则结果为z。 1 using System; 2 3 namespace Operator 4 { 5 class TernaryOperator 6 { 7 阅读全文
posted @ 2022-09-17 12:19 chenlight 阅读(616) 评论(0) 推荐(0)
摘要: 书第P513页,有对父对象与子对象的关系介绍,值得学习一下; 阅读全文
posted @ 2022-09-11 11:09 chenlight 阅读(59) 评论(0) 推荐(0)
摘要: 在学习P501页,Baunce.cs的程序时发现“小球”Graphics实例中在进行grfx = Graphics.FromImage(bitmap);后,要想展现在屏幕上,还是要再次创建Graphics grfx = CreateGraphics();实例,再使用grfx.DrawImage(); 阅读全文
posted @ 2022-08-27 19:06 chenlight 阅读(448) 评论(0) 推荐(0)
摘要: 此程序的重点就是如何添加ico文件: 一、在解决方案资源管理器的项目上右键,添加->新建项 二、下拉找到“图标文件”选项,然后将名称更改为“ProgramWithIcon.ico” 点击右下角添加,出现ico文件编辑器,不用管这个页面,直接关掉; 关掉编辑器后,打开项目所在目录,找到ProgramW 阅读全文
posted @ 2022-08-21 21:35 chenlight 阅读(451) 评论(0) 推荐(0)
摘要: 下面示例是break的用法: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Drawing; 6 using System.Wi 阅读全文
posted @ 2022-08-20 22:43 chenlight 阅读(1062) 评论(0) 推荐(0)
摘要: Enum基准测试 枚举的速度是很快的,几乎不存在性能问题。枚举仅仅是像int类型一样的语法糖,也很快。 Version 1 这版代码用于测试枚举值。我们在紧密的循环中进行多次迭代。 Version 2 此版代码测试int。通过对比这两版本的代码,我们可以看到来自枚举的任何可能的性能影响。 1 usi 阅读全文
posted @ 2022-08-20 11:36 chenlight 阅读(90) 评论(0) 推荐(0)
摘要: default默认值: 当值是类的字段时,它们总是被初始化为0。创建类时,枚举字段也将被初始化为零(以及等效的值)。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Tex 阅读全文
posted @ 2022-08-17 22:51 chenlight 阅读(269) 评论(0) 推荐(0)
摘要: enum枚举用于存储命名的和神奇的内容。一般在collection、if和switch中使用enum枚举。 Enum枚举: 思考一下,一个项目存储有代表性的花,花可能会有紫色的颜色,一个枚举可以代表各种颜色 这比string类型更加强大。 Enum枚举用法: 在C#程序中,我们必须以类似于类的方式来 阅读全文
posted @ 2022-08-14 11:53 chenlight 阅读(652) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Drawing; 6 using System.Windows.Forms; 7 阅读全文
posted @ 2022-08-14 10:49 chenlight 阅读(49) 评论(0) 推荐(0)
摘要: 话题#1:可重用性 这种方法的第一个话题就是可重用性。想像一下在下个星期,你想要从另一个Form中使用Form2,比如说是Form3。你想要收集相同的数据,但希望以不同的方式呈现。现在你的Form不是那么具备可重用性,因为不清楚谁会调用Form。 话题#2:更多知识 一般来说,被调用的对象应该对调用 阅读全文
posted @ 2022-08-13 11:17 chenlight 阅读(48) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 26 下一页