示例系统 Windows 10 安装Go语言开发工具 根据自己的喜好在以下两个链接中,选择其中一个来下载Go语言开发工具,选择下载以.msi作为后缀名的Windows版。 Go语言中文网 Go语言官网(需要魔法上网) 检查Go语言开发工具是否可用 在命令行中直接输入Go命令,如果显示出如以下的提示, ...
分类:
编程语言 时间:
2020-07-19 16:31:39
阅读次数:
96
// 文件分隔符 String separator = File.separator; /** 构造器的使用 */ // 使用相对路径创建文件 File file = new File("hello.txt"); // 使用绝对路径创建文件 File file1 = new File("C:\\Us ...
分类:
编程语言 时间:
2020-07-19 00:58:21
阅读次数:
108
ionic5 modal使用过程中,在模态窗中打开另外一个模态窗,浏览器中显示正常,但是andorid8系统真机调试时,关闭最上层模态窗,上级模态窗DOM中存在,但是不显示。 原因是android版本太低,应该是9以下版本,不支持web animation导致多级模态窗关闭其中一个,共享的样式丢失, ...
分类:
其他好文 时间:
2020-07-19 00:45:41
阅读次数:
117
新建一个文本文档 命名为HelloWorld 后缀改为java ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 如果没有显示后缀 取消勾勾,即可显示出后缀 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...
分类:
编程语言 时间:
2020-07-19 00:31:07
阅读次数:
79
1.打开android studio 2. 3. 4. 5. 6.下一步就行了,后面需要点击accept/接受就开始下载了 ...
分类:
移动开发 时间:
2020-07-18 22:56:45
阅读次数:
142
用循环依次对list中的每个名字打印出 Hello, xxx! L = ['Bart', 'Lisa', 'Adam']x = len(L) for i in range(x): print('Hello,', L[i]) 此处,若直接使用 for i in x 时,编译报错:TypeError: ...
分类:
编程语言 时间:
2020-07-18 22:45:27
阅读次数:
95
Android 平台目前提供了两大类动画,在 Android 3.0 之前,一大类是 View Animation,包括 Tween animation(补间动画),Frame animation(帧动画),在 Android 3.0 中又引入了一个新的动画系统:Property Animation ...
分类:
其他好文 时间:
2020-07-18 22:35:31
阅读次数:
68
1、Appium 官网:http://appium.io AppUI自动化测试 Appium 是一个移动端自动化测试开源工具,支持iOS 和Android 平台,支持Python、Java 等语言,即同一套Java 或Python 脚本可以同时运行在iOS 和Android平台,Appium 是一个 ...
分类:
其他好文 时间:
2020-07-18 22:24:31
阅读次数:
208
安装好Android Studio4.0。下载地址:https://developer.android.google.cn/studio安装教程:https://blog.csdn.net/xuw_xy/article/details/89524335 ...
分类:
移动开发 时间:
2020-07-18 21:55:38
阅读次数:
360
设置路由: use Illuminate\Support\Facades\Route; //设置路由访问控制器只能是get访问 // Route::get('/user','User@user'); // Route::get('/',function(){ // return 'hello wor ...
分类:
数据库 时间:
2020-07-18 19:57:39
阅读次数:
87