2021年4月6日
摘要: C#语法基础05_switch switch(expression){ case constant-expression : statement(s); break; case constant-expression : statement(s); break; /* 您可以有任意数量的 case 阅读全文
posted @ 2021-04-06 15:47 摸鱼time 阅读(76) 评论(0) 推荐(1) 编辑
摘要: C#语法基础04_Debug.Assert 仅当为false时,跳出信息提示框,或将显示简化提醒信息和提醒消息 // 存在重载 Debug.Assert(<bool>); Debug.Assert(<bool>,"simplified string"); Debug.Assert(<bool>,"s 阅读全文
posted @ 2021-04-06 00:23 摸鱼time 阅读(562) 评论(0) 推荐(0) 编辑
摘要: C#语法基础03_格式化输出 占位符 格式化输出 格式化数字输出表格 占位符 {<index>} // eg:{0} {1} {2} 例子 class Program { static void Main(string[] args) { string nameCat = "Tom"; string 阅读全文
posted @ 2021-04-06 00:04 摸鱼time 阅读(241) 评论(0) 推荐(0) 编辑
  2021年4月5日
摘要: C#语法基础02_强制类型转换 type.Parse(); type.TryParse(); Convert 方法 type.Parse(); 强制转换为type类型,转化失败则报错 type.Parse(<参数>); 例子 class Program { static void Main(stri 阅读全文
posted @ 2021-04-05 18:06 摸鱼time 阅读(646) 评论(0) 推荐(0) 编辑
  2021年4月2日
摘要: C#语法基础01_读取输入 Read() ReadLine() Write() WriteLine() ReadKey() 读取单个字符Read() Console.Read(); // 读取一个字符,返回其ASKII的int值 例子 Console.WriteLine(Console.Read() 阅读全文
posted @ 2021-04-02 11:29 摸鱼time 阅读(214) 评论(0) 推荐(0) 编辑
  2021年1月31日
摘要: 类中的私有方法 在Python中使用_或 __开头的方法名称,表示方法对类是“私有的”,而不是由外部程序使用的。 例如 class Test: def __init__(self): pass def __privateMethod(self): pass 阅读全文
posted @ 2021-01-31 00:28 摸鱼time 阅读(560) 评论(0) 推荐(0) 编辑
  2021年1月27日
摘要: 类的定义与使用 cball = Projectile(angle, vel, h0)中, cball传入给self 一个炮弹从某个倾角射出计算水平位移和大致飞行时间的程序 # projectile.py from math import radians, sin , cos ############ 阅读全文
posted @ 2021-01-27 22:01 摸鱼time 阅读(241) 评论(0) 推荐(0) 编辑
  2021年1月24日
摘要: randrange 和 random randrange([start], [stop], [step]) 在从[start, stop),步长为step的整数序列中随机返回一个int型数字 random() 在从[0, 1)中随机返回一个float型数字(17位有效数字) 阅读全文
posted @ 2021-01-24 23:04 摸鱼time 阅读(259) 评论(0) 推荐(0) 编辑
摘要: deadloop之非模态交互界面(模态循环)(哨兵循环) 通过无限循环,条件退出,实现多模态的交互界面 主要功能1:通过键盘按键g\w\r\b进行界面颜色改变,按q退出 主要功能2:点击界面某处生成输入框,回车使输入框内的文字固定在界面 当等待一个特殊的键入时可用,(以return为例) while 阅读全文
posted @ 2021-01-24 16:39 摸鱼time 阅读(238) 评论(0) 推荐(0) 编辑
摘要: bool运算符的行为 操作符 操作定义 x and y 如果x为假,返回x,否则返回y x or y 如果x为真,返回x,否则返回y not x 如果x为假,返回真,否则返回假 例子 a = 1 b = 2 c = a and b print(c) # 2 a = 0 b = 2 c = a and 阅读全文
posted @ 2021-01-24 14:55 摸鱼time 阅读(76) 评论(0) 推荐(0) 编辑