package main import ( "bufio" "fmt" "io" "log" "os" "os/exec" // "strings" ) func checkExe2(exeAdress string) { cmd := exec.Command("cmd.exe", "/c", " ...
分类:
其他好文 时间:
2021-02-09 12:32:53
阅读次数:
0
501 / 529 A HDU 5007 Post Robot 83 / 443 B HDU 5008 Boring String Problem !!! 111 / 784 C HDU 5009 Paint Pearls +++ 6 / 57 D HDU 5010 Get the Nut ??? ...
分类:
其他好文 时间:
2021-02-09 12:32:36
阅读次数:
0
package com.jiang.io; import java.io.*; /** * @author JQC * @date 2021/2/8-23:21 */ public class FilesCopyTest { public static void main(String[] args ...
分类:
其他好文 时间:
2021-02-09 12:31:52
阅读次数:
0
今日学习:scala package com.chapter01.inputcon object forcon { def main(args: Array[String]): Unit = { print("to循环:") //[1,5] //这里i相当于val变量,可以写成纯函数 for (i ...
分类:
其他好文 时间:
2021-02-09 12:22:04
阅读次数:
0
一 转换为字符串 1)变量名.toString() var num = 10; console.log(typeof num.toString()); 2)函数 String(变量名) var num = 10; console.log(typeof String(num)); [ 强制转换 ] 3 ...
分类:
其他好文 时间:
2021-02-09 12:19:48
阅读次数:
0
Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position ...
分类:
其他好文 时间:
2021-02-09 12:12:28
阅读次数:
0
在Java中,8种基本数据类型并不能表示所有的数字。 整数无法表示比byte最小取值还小的,比long最大取值还大的。 浮点数本身有精度, 这就注定有很多数字用基本类型没有办法表示。 BigInteger用来表示不可变的任意精度的整数。BigDecimal用来表示不可变的、任意精度的有符号十进制数。 ...
分类:
其他好文 时间:
2021-02-09 12:02:58
阅读次数:
0
要求:年龄不满18 就边框飘红 后台代码: public class AgeInfoWithValidation : IDataErrorInfo { private int age =0; public int Age { get { return age; } set { age = value ...
分类:
其他好文 时间:
2021-02-09 12:02:45
阅读次数:
0
什么是方法引入: 方法引入:需要结合lambda表达式能够让代码变得更加精简。 1.匿名内部类使用。 2.Lambda调用匿名内部类。 3.方法引入。 方法引入的几种: 1.静态方法引入: 类名::(静态)方法名称 2.对象方法引入: 类名:: 实例方法名称 3.实例方法引入: new 对象 对象实 ...
分类:
其他好文 时间:
2021-02-09 12:01:49
阅读次数:
0
public class text2 { String name; //实例变量,在类和方法之间,实例变量从属于对象,如不自行初始化,则会变成默认值,数值类默认值值0或0.0 int age; //字符串变量默认值为u0000,布尔值默认值false,除了基本类型其他的都是null static d ...
分类:
其他好文 时间:
2021-02-09 12:00:31
阅读次数:
0