#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-10 18:03:42
阅读次数:
0
1. 例子: 当需要在程序中表达年龄不合理的情况时, 而 Java官方由没有提供这种针对性的异常,此时就需要程序员自定义异常加以描述。 2. 实现流程: a. 自定义xxxException异常类 继承Exception类或者其子类 b. 提供两个版本的构造方法,一个是:无参构造方法,一个是:字符串 ...
分类:
编程语言 时间:
2021-06-09 15:26:46
阅读次数:
0
1 package com.future; 2 3 import java.util.concurrent.*; 4 5 6 public class FDemo { 7 public static final ExecutorService service = Executors.newSingl ...
分类:
其他好文 时间:
2021-06-04 19:55:49
阅读次数:
0
1、用偶判断,不用奇判断 System.out.println(-1%2==1?"奇数":"偶数"); 偶数 原因:java计算余数:a/b -> a-a/b*b 所以-1/2余数为-1,不等于1. 2、不要只替换一个类 常量类中的属性final修饰。其他类引用时,final常量会被直接将值写到类中 ...
分类:
编程语言 时间:
2021-06-02 20:57:55
阅读次数:
0
ExecutorService executorService = Executors.newSingleThreadExecutor(); Future<String> future = executorService.submit(() -> myJob(param)); try { //设置超 ...
分类:
编程语言 时间:
2021-06-02 20:35:20
阅读次数:
0
阿拉伯数字转汉字数字 public static String int2chineseNum(int src) { final String num[] = {"零", "一", "二", "三", "四", "五", "六", "七", "八", "九"}; final String unit[] ...
分类:
其他好文 时间:
2021-06-02 19:53:42
阅读次数:
0
硬件平台:某ARM SoC 软件平台:Linux 问题现象:产品做开关机压力测试,发生死机。 ...
分类:
其他好文 时间:
2021-06-02 19:24:29
阅读次数:
0
JAVA 暴力(BFS): public final int[] findBall(int[][] grid) { int len = grid[0].length; int[] balls = new int[len]; for (int i = 0; i < balls.length; i++) ...
分类:
其他好文 时间:
2021-06-02 18:14:01
阅读次数:
0
内部类特点 内用外,随意访问;外用内,需要内部类对象. 内部类分为两种: 成员内部类 局部内部类 匿名内部类 成员内部类如果 属性 出现重名问题 : 外部类名称 . this . 外部类变量名 来访问; 局部内部类如果希望访问所在方法的局部变量,那么这个 局部变量必须是不变的 或者 final修饰 ...
分类:
其他好文 时间:
2021-06-02 14:46:52
阅读次数:
0
1、String的基本特性 String:字符串,使用一对""引起来表示。 String sl = "hello";//字面量的定义方式 String s2 = new String("hello") ; String声明为final的, 不可被继承。 String实现了Serializable接口 ...
分类:
其他好文 时间:
2021-06-02 14:38:33
阅读次数:
0