码迷,mamicode.com
首页 >  
搜索关键字:operating system    ( 49463个结果
Revit 二次开发 元素创建与修改练习
学习地址: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处理 程序出现 System.AccessViolationException异常会终止进程,try catch是无法捕捉的。 有个处理方法在引发异常的发放上面加上 [System.Runtime.ExceptionServices.Ha ...
分类:数据库   时间:2020-07-11 21:18:03    阅读次数:67
2020/7/11 java Date类 DateFormat类 Calenda类
1 Date 1.1 Date类概述 System.currentTimeMillis() 返回值long类型参数 获取1970年1月一日到现在的毫秒值 构造方法 Date()分配date对象并初始化此对象 比表示分配他的时间 精确到毫秒 Date(long Date) 分配Date对象并初始化此对 ...
分类:编程语言   时间:2020-07-11 19:35:41    阅读次数:160
7月11日学习日志
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
linux0.11boot之setup.s
! ! 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
javaDate类
Date类概述 类 Date 表示特定的瞬间,精确到毫秒。 毫秒概念:1000毫秒=1秒 毫秒的0点: System.currentTimeMillis() 返回值long类型参数 用于获取当前日期的毫秒值 时间的原点:公元1970年 一月一日,午夜0:00:00 对应的毫秒值就是0 注意:时间和日 ...
分类:编程语言   时间:2020-07-11 19:08:05    阅读次数:78
C#事件复习
遇到一本好书,终于把事件搞懂了。 using System; class Sender { private int myInt;//字段 public int MyInt//属性 { get{return myInt;} //获取get set { ... ...
分类:Windows程序   时间:2020-07-11 18:57:47    阅读次数:52
Linux介绍、命令
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!