码迷,mamicode.com
首页 >  
搜索关键字:x window system    ( 76983个结果
Hardware assisted virtualization and data execution protection must be enabled in the BIOS. See https://docs.docker.com/docker-for-windows/troubleshoot/#virtualization
解决办法:先关闭 Hyper-V ,然后重新开启 Hyper-V 即可! 来自:https://zhuanlan.zhihu.com/p/51939654 ...
分类:移动开发   时间:2021-04-12 12:17:13    阅读次数:0
Java学习-方法
什么是方法? System.out.println() :类-对象-方法 Java方法是语句的集合,在一起执行一个功能。 方法是解决一类问题的步骤的有序组合 方法包含在类或对象中 方法正在程序中被创建,在其它地方被引用。 设计方法的原则:方法的本意是功能块,就是实现某个功能的语句块的集合。设计方法的 ...
分类:编程语言   时间:2021-04-12 12:14:28    阅读次数:0
petastorm 0.9.8 : 导致OSError: Passed non-file path的其中一个原因及解决方案
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
安装Python3.7的步骤
访问Python的官网:https://www.python.org/,如下图所示: 鼠标放到downloads上面然后点击downloads for windows下面的Python3.7开始下载Python3.7.如下图所示: 下载完成后,在文件夹中打开所下载的Python-3.7.0然后双击打 ...
分类:编程语言   时间:2021-04-12 12:11:27    阅读次数:0
window 远程桌面 CentOS-7-x86_64-Minimal-1908
打开vi /etc/selinux/config, 设置 SELINUX=disabled yum grouplist yum groupinstall "GNOME Desktop" "Graphical Administration Tools" 安装epel库 yum -y install e ...
分类:Windows程序   时间:2021-04-12 12:03:16    阅读次数:0
HelloWorld
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
Unity InputSystem
最近迁移项目到UnityXR框架,发现UnityXR框架使用了新的输入系统(InputSystem)然后就学习了一下。 using System.Collections; using System.Collections.Generic; using UnityEngine; using Unity ...
分类:编程语言   时间:2021-04-10 13:33:21    阅读次数:0
两个String类型字符串怎么判断其中一个包含另一个
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
c# ArrayList、List、Dictionary
ArrayList(频繁拆装箱等原因,消耗性能,不建议使用) 需引入的命名空间 using System.Collections; 使用 ArrayList arrayList = new ArrayList(); arrayList.Add("abc"); //将数据新增到集合结尾处 arrayL ...
分类:Windows程序   时间:2021-04-10 13:01:36    阅读次数:0
一堆数组
代码 //一堆数组 // int i = 0;// int j = 1;// int k = 2;// //想把数据放到一个变量里?使用数组,就是一个存放多个数据的集合// //例如,存放多个int类型的数据// int[] ii; //声明一个int的数组// //动态初始化// int[] ii ...
分类:编程语言   时间:2021-04-10 13:00:40    阅读次数:0
76983条   上一页 1 ... 49 50 51 52 53 ... 7699 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!