学习地址:https://www.bilibili.com/video/BV1mf4y1S72o?p=11 实例练习一 using System; using System.Collections.Generic; using System.Linq; using System.Text; usin ...
分类:
其他好文 时间:
2020-07-11 21:22:24
阅读次数:
136
System.AccessViolationException处理 程序出现 System.AccessViolationException异常会终止进程,try catch是无法捕捉的。 有个处理方法在引发异常的发放上面加上 [System.Runtime.ExceptionServices.Ha ...
分类:
数据库 时间:
2020-07-11 21:18:03
阅读次数:
67
1 Date 1.1 Date类概述 System.currentTimeMillis() 返回值long类型参数 获取1970年1月一日到现在的毫秒值 构造方法 Date()分配date对象并初始化此对象 比表示分配他的时间 精确到毫秒 Date(long Date) 分配Date对象并初始化此对 ...
分类:
编程语言 时间:
2020-07-11 19:35:41
阅读次数:
160
1.今天学习了赋值运算符,逻辑运算符,关系运算符。 在逻辑运算符中,与和或运算有特殊的规定,如或运算: public class VTest{ public static void main(String[] args){ int i=0; boolean f=5>3||i++>0; System. ...
分类:
其他好文 时间:
2020-07-11 19:34:12
阅读次数:
59
java代码实现 public class SubArray { public static int sub(int[] A, int[] B) { int flag = -1; for (int i = 0; i < A.length - B.length + 1; i++) {//7 for ( ...
分类:
编程语言 时间:
2020-07-11 19:26:55
阅读次数:
63
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate plac ...
分类:
系统相关 时间:
2020-07-11 19:15:12
阅读次数:
75
Date类概述 类 Date 表示特定的瞬间,精确到毫秒。 毫秒概念:1000毫秒=1秒 毫秒的0点: System.currentTimeMillis() 返回值long类型参数 用于获取当前日期的毫秒值 时间的原点:公元1970年 一月一日,午夜0:00:00 对应的毫秒值就是0 注意:时间和日 ...
分类:
编程语言 时间:
2020-07-11 19:08:05
阅读次数:
78
遇到一本好书,终于把事件搞懂了。 using System; class Sender { private int myInt;//字段 public int MyInt//属性 { get{return myInt;} //获取get set { ... ...
Linux介绍、命令 一 操作系统( Operation System,OS ) 没有安装操作系统的计算机,通常被称为裸机。如果想在裸机上运行自己所编写的程序,就必须用机器语言书写程序。如果计算机上安装了操作系统,就可以在操作系统上安装支持的高级语言环境,用高级语言开发程序。 1.1 操作系统的作用 ...
分类:
系统相关 时间:
2020-07-11 17:37:16
阅读次数:
87
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PoolMar : MonoBehaviour { // Start is called before the fi ...
分类:
其他好文 时间:
2020-07-11 12:50:34
阅读次数:
56