码迷,mamicode.com
首页 >  
搜索关键字:operating system    ( 49463个结果
WPF 控件绑定后台实体类实例
先创建后台实体类 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System. ...
分类:Windows程序   时间:2021-04-06 14:29:51    阅读次数:0
计蒜客 T1167 素数回文数的个数
水题~。 int n; bool isprime(int x) { if(x<2) return false; for(int i=2;i*i<=x;i++) if(x % i == 0) return false; return true; } bool palindrome(int x) { i ...
分类:其他好文   时间:2021-04-06 14:25:50    阅读次数:0
idea使用
1.main函数快捷键 psvm 2.system.out.printLn sout(相当于eclipse syso) 3.ctrl + alt + t == try catch,意识是surround with try catch, 但是如果要直接写可以"".try直接会提示 4.alt+inse ...
分类:其他好文   时间:2021-04-05 12:43:06    阅读次数:0
git历史回退
现在,你已经学会了修改文件,然后把修改提交到Git版本库,现在,再练习一次,修改readme.txt文件如下: Git is a distributed version control system. Git is free software distributed under the GPL. 然 ...
分类:其他好文   时间:2021-04-05 12:32:31    阅读次数:0
Syntax error on token "class", @ expected
这个问题主要是因为定义类的时候在类名后边加了个括号(); `public class Hello { public static void main(String[] args) { System.out.print("Hello World!"); System.out.println();//换 ...
分类:其他好文   时间:2021-04-05 12:26:42    阅读次数:0
Java:多维数组
多维数组可以看成是数组的数组,比如二维数组就是一个特殊的一维数组,其每一个元素都是一个一维数组。 二维数组 int a[][] = new int[4][2]; 表示二维数组a可以看成一个四行两列的数组。 多维数组的使用 1 package com.jiemyx.array; 2 3 public ...
分类:编程语言   时间:2021-04-05 12:08:59    阅读次数:0
c# winform 定时器控件到期不执行的问题。
一个测试用小程序中用了两个timer控件(System.Windows.Forms.Timer)来执行定时任务。其中一个定时器timerA在异步获取到资源后会在这个异步的task(System.Threading.Tasks )中启动执行。日志打印中发现所有的启动条件都满足,但是无论如何都看不到此t ...
分类:Windows程序   时间:2021-04-05 11:45:57    阅读次数:0
Unity3D_VR或AR 凝视效果
在Unity中的层级关系及命名 改变每个物体的属性 粒子效果及图片 下载 创建脚本 GazePartical,将该脚本挂载到CanvasGaze上 脚本代码如下: using System.Collections; using System.Collections.Generic; using Un ...
分类:编程语言   时间:2021-04-02 13:13:07    阅读次数:0
C# 文本,图片 与 Base64的相互转换
一、文本与Base64 1、文本转Base64字符串 private static string StrToBase64(string str) { byte[] b = Encoding.Default.GetBytes(str); //转成 Base64 形式的 System.String st ...
分类:Windows程序   时间:2021-04-02 13:01:46    阅读次数:0
OSI七层网络模型
为了完成不同计算机或网络或架构之间的成功通信,国际标准化组织(ISO,1984)提出了OSI七层模型。 OSI(Open System Interconnect),即开放式系统互联。OSI网络模型分为七层:应用层,表示层,会话层,传输层,网络层,数据链路层,物理层。 应用层 应用层由网络应用程序使用 ...
分类:其他好文   时间:2021-04-01 13:48:59    阅读次数:0
49463条   上一页 1 ... 35 36 37 38 39 ... 4947 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!