defer是延迟执行。如果存在多个defer,运行顺序是先进后出,属于堆栈结构 f, err := os.Create(fileName) if err != nil { fmt.Println("Create file failed:", err) return nil, err } defer ...
分类:
编程语言 时间:
2021-07-05 19:08:05
阅读次数:
0
@Test public void testTime() { var d1 = LocalDate.of(2021,1,1); var d2 = LocalDate.of(2021,7,2); Period p = Period.between(d1, d2); System.out.println ...
分类:
其他好文 时间:
2021-07-02 16:38:05
阅读次数:
0
程序的一部分如下:System.out.println(labelInADT); System.out.println(intervalSet.labels()); System.out.println(intervalSet.labels().contains(labelInADT)); 其中la ...
分类:
其他好文 时间:
2021-07-01 17:25:01
阅读次数:
0
当满足某个条件的时候,才进行组件的注入 常见的如下: run.containsBean用于判断是否含有某个组件 System.out.println("++++++++++++++++++++++++++++++"); boolean tom = run.containsBean("tom"); S ...
分类:
编程语言 时间:
2021-06-28 20:10:39
阅读次数:
0
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
我裂开,一波未平一波又起... 按照MS教程上填写 package main import "fmt" func main() { fmt.Println("Hello World!") } 然后无脑搜索教程,其中修改了launch.json无济于事,按理来说新手入门的话应该VSC的配置文件是不需要 ...
分类:
其他好文 时间:
2021-06-28 19:44:16
阅读次数:
0
/*单if语句的格式: if(关系表达式){ 语句体; } */ public class SeguenceIf{ public static void main(String [] args){ System.out.println("今天天气不错,正在压马路,突然发现一个好玩的地方:网吧"); ...
分类:
其他好文 时间:
2021-06-28 18:55:48
阅读次数:
0
方法的重载 public class MethodDemo05 { public static void main(String[] args) { int add1 = add(1, 2); System.out.println(add1); System.out.println(" "); in ...
分类:
其他好文 时间:
2021-06-28 18:55:14
阅读次数:
0
被调用类 import java.util.Arrays; public class TestMain { public static void main(String[] args) { System.out.println("TestMain"); } public static void te ...
分类:
编程语言 时间:
2021-06-24 17:56:28
阅读次数:
0
char c2 = '我';char c3 = '爱';char c4 = '你'; System.out.println(c2);System.out.println((int)c2);System.out.println(c3);System.out.println((int)c3);Syste ...
分类:
其他好文 时间:
2021-06-22 18:14:03
阅读次数:
0