需求分析:从收费的起点到终点收费系统 时间:3minutes 设计文档:3个label 2个button 1个comboBox 时间:5minutes 设计复审:李娟娟复审 时间:20minutes 代码规范:使用驼峰式命名 时间:3minutes 具体设计: 输入两个数字得出正确的结果 时间 2m ...
分类:
其他好文 时间:
2021-04-12 12:46:33
阅读次数:
0
公交站点显示 using System.Collections.Generic; usinSystem.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; usi ...
分类:
其他好文 时间:
2021-04-12 12:40:32
阅读次数:
0
ini文件读写 添加帮组类 using System; using System.Text; using System.IO; using System.Runtime.InteropServices; namespace IniHelperDemo { public class IniConfig ...
分类:
其他好文 时间:
2021-04-12 12:32:03
阅读次数:
0
XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St ...
分类:
其他好文 时间:
2021-04-12 12:30:15
阅读次数:
0
什么是方法? System.out.println() :类-对象-方法 Java方法是语句的集合,在一起执行一个功能。 方法是解决一类问题的步骤的有序组合 方法包含在类或对象中 方法正在程序中被创建,在其它地方被引用。 设计方法的原则:方法的本意是功能块,就是实现某个功能的语句块的集合。设计方法的 ...
分类:
编程语言 时间:
2021-04-12 12:14:28
阅读次数:
0
GitHub - uber/petastorm https://github.com/uber/petastorm/ 版本: Windows 10 Python 3.7.0 petastorm 0.9.8 pyarrow 3.0.0 编写test.py from petastorm import m ...
分类:
其他好文 时间:
2021-04-12 12:12:33
阅读次数:
0
asdfasf /** * nihao * @author Administrator * */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello world!") ...
分类:
其他好文 时间:
2021-04-12 11:46:53
阅读次数:
0
最近迁移项目到UnityXR框架,发现UnityXR框架使用了新的输入系统(InputSystem)然后就学习了一下。 using System.Collections; using System.Collections.Generic; using UnityEngine; using Unity ...
分类:
编程语言 时间:
2021-04-10 13:33:21
阅读次数:
0
public class Demo { public static void main(String[] args) { System.out.println(Contains1("abfadawdawdawd", ".*daw.*")); System.out.println(Contains2( ...
分类:
其他好文 时间:
2021-04-10 13:19:37
阅读次数:
0
ArrayList(频繁拆装箱等原因,消耗性能,不建议使用) 需引入的命名空间 using System.Collections; 使用 ArrayList arrayList = new ArrayList(); arrayList.Add("abc"); //将数据新增到集合结尾处 arrayL ...