码迷,mamicode.com
首页 >  
搜索关键字:r package remove help update    ( 68266个结果
Appium常用API
常用 # 安装apk到手机 driver.install_app(app_path) 参数: app_path:脚本机器中APK的文件路径 # 手机中移除app driver.remove_app(app_id) 参数: app_id:需要卸载的app包名 # 判断app是否安装 driver.is ...
分类:移动开发   时间:2021-06-28 20:11:33    阅读次数:0
golang 1. hello.go
package main //程序的包名 /* import "fmt" import "time" */ import ( "fmt" "time" ) //main函数 func main() { //函数的{ 一定是 和函数名在同一行的,否则编译错误 //golang中的表达式,加";", 和 ...
分类:其他好文   时间:2021-06-28 20:07:48    阅读次数:0
golang 2. 变量
package main /* 四种变量的声明方式 */ import ( "fmt" ) //声明全局变量 方法一、方法二、方法三是可以的 var gA int = 100 var gB = 200 //用方法四来声明全局变量 // := 只能够用在 函数体内来声明 //gC := 200 fun ...
分类:其他好文   时间:2021-06-28 20:02:14    阅读次数:0
快递E栈——网络编程
快递实体类: 1 package bean; 2 3 import java.io.Serializable; 4 5 /** 6 * 快递类 7 * 8 * @author Administrator 9 */ 10 public class Express implements Serializ ...
分类:其他好文   时间:2021-06-28 19:58:28    阅读次数:0
GO的Rand随机数不一样
package main import ( "fmt" "math/rand" "sync" "time" ) var wg sync.WaitGroup func f1(i int) { wg.Done() fmt.Println(i) } func main() { rand.Seed(time ...
分类:其他好文   时间:2021-06-28 19:53:07    阅读次数:0
sql语句更新xml基本写法
sql语句更新xml基本写法 <mapper namespace="com.keyou.dao.samSystem.SamApplyDao"> <update id="updateRejectSamApply"> UPDATE SAM_APPLY <trim prefix="set" suffixO ...
分类:数据库   时间:2021-06-28 19:45:46    阅读次数:0
[部署日记]GO在Visual Studio Code初次运行时提示go: go.mod file not found in current directory or any parent directory; see 'go help modules'
我裂开,一波未平一波又起... 按照MS教程上填写 package main import "fmt" func main() { fmt.Println("Hello World!") } 然后无脑搜索教程,其中修改了launch.json无济于事,按理来说新手入门的话应该VSC的配置文件是不需要 ...
分类:其他好文   时间:2021-06-28 19:44:16    阅读次数:0
Spring入门系列-IOC理论的推导
IOC理论的推导 假设我们要写一个user相关的业务 UserDao接口 package com.dreamcold.dao; public interface UserDao { public void getUser(); } UserDaoImpl实现类 package com.dreamco ...
分类:编程语言   时间:2021-06-28 19:42:06    阅读次数:0
Java-IO流系列-FileReader与FileWriter
FileReader读取文件 查看文件的相对路径 示例一:查看文件的相对路径 package com.dreamcold.io; import java.io.File; public class Demo01 { public static void main(String[] args) { F ...
分类:编程语言   时间:2021-06-28 19:39:13    阅读次数:0
使用过滤器filter进行登录验证
简述 在常见的网站上,我们需要登录才能访问到其他资源。一般来说我们的登录信息会用session存储,所以我们可以使用filter进行一个登录验证的过滤。 package cn.itcast.web.filter; import com.sun.deploy.net.HttpRequest; impo ...
分类:其他好文   时间:2021-06-28 19:38:28    阅读次数:0
68266条   上一页 1 ... 5 6 7 8 9 ... 6827 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!