摘要:
花了几个小时简单了解了下dart 准备为flutter的学习打基础 总览 int 的默认值是 null 类里面的属性为null编译不给过 命名规则 类:大驼峰 公共方法属性:小驼峰 私有属性方法:_小驼峰 操作符 ~/ 整除 5 ~/ 2 //返回2 ??= 如果空则赋值,2.x好像失效了 int . . .
摘要:
变量准备 var filePath = @"c:\doc\1.txt"; var dirPath1 = @"c:\music\"; var dirPath2 = @"c:\movie"; 路径拼接 Console.WriteLine(Path.Combine(dirPath1, "a.mp3")); . . .
摘要:
try(mainWindowDef.close())catch() struct mainWindowDef ( title = "Main Window", roll = rollout roll "" ( local _this fn created = ( roll.title = _this . . .
摘要:
删除Z盘的映射,如没有则返回无效参数 subst /D Z: 将D盘Test文件夹映射为Z盘 subst Z: D:\Test . . .