- 博客(14)
- 收藏
- 关注
原创 为什么还要重写Spring Boot Starter模块
版本兼容性:某些时候,项目可能需要使用不同于Spring Boot Starter模块提供的版本的库或框架。如果所需的库或框架的版本与Starter模块的版本不兼容,开发者可能需要重写Starter模块,以便使用所需的库或框架版本。定制化需求:某些情况下,Spring Boot Starter模块可能提供的功能和默认配置无法满足特定的定制化需求。扩展功能:有时候,开发者可能需要在Spring Boot Starter模块提供的功能之上添加额外的功能或集成其他的库或框架。
2023-11-04 17:56:12 94 1
原创 Java ch7
Analyze the following code:public class Test { public static void main(String[] args) { int[] x = new int[5]; int i; for (i = 0; i < x.length; i++) x[i] = i; System.out.println(x[i]); }}(1分)A.The program displays 0
2022-02-28 17:57:41 197
原创 c语言宏定义
1.若程序中有宏定义行:#define N 100则以下叙述中正确的是A) 宏定义行中定义了标识符N的值为整数100B) 在编译程序对C源程序进行预处理时用100替换标识符NC) 上述宏定义行实现将100赋给标示符ND) 在运行时用100替换标识符N正确答案应该是B 在编译时进行宏替换C 不对,这不是赋值操作D 不对,替换是在编译时做的A 如果不对,只能是在文字上, 不能说N的值是100N只是个标识符,没有值的意义...
2021-12-08 18:21:10 754
原创 java中separatorChar与separator的区别
separatorChar是字符,separator是字符串,它们的值是一样的。可以查阅一下jdk的源码: 1 publicstaticfinalStringseparator=""+separatorChar; 其实separator是由separatorChar转换成的,所以只是类型不同...
2021-12-03 16:36:09 1189
原创 Java chapter 12 :Expection & IO
2-26Which of the following is not an advantage of Java exception handling?(1分)A.Java separates exception handling from normal processing tasks.B.Exception handling improves performance.C.Exception handling makes it possible for the caller'.
2021-12-03 16:35:16 331
原创 java除以0一定会ArithmeticException?
因为java的float和double使用了 IEEE 754 标准。这个标准规定:浮点数除以0等于正无穷或负无穷。1.0/0=Infinity(无穷大)
2021-12-03 16:11:39 407
原创 Java 的 Checked 和 Unchecked Exception
如果在 Java 应用中对 Exception 能够正确处理,那么将会使你的程序更具有健壮性。但是很多人对 Exception 中的 Checked Exception 和 Unchecked Exception 并不理解,并且 Exception 又常常被被分为 JVM Exception 和程序 Exception,这就让一些开发者显得更加困惑了,本文就这几个概念详细讲述一下。Checked ExceptionChecked Exception 是必须在代码中进行恰当处理的 Exception,
2021-12-02 17:32:06 241
原创 Codeforces A.Domino piling
CF小白最简解法(之一):A. Domino pilingYou are given a rectangular board ofM × Nsquares. Also you are given an unlimited number of standard domino pieces of2 × 1squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as...
2021-12-01 15:55:55 674
原创 how to scanf charArray
//字符串#include<stdio.h>#include<string.h>#define PRAISE "You are an extraordinary being."int main(){ char name[40]; printf("What is your name?"); scanf("%s",name);//anna //name= name[0],第一个数组的地址 //a[4]='/0'空字符串 printf("...
2021-11-06 22:58:52 73
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人