- 博客(8)
- 收藏
- 关注
原创 内核定时器崩溃
[20251201185812]fiq hook entry[20251201185812][20251201185812][20251201185812][2025.12.01 02:58:12-725043646]sched_clock : 854797075280ns[20251201185812][20251201185812][20251201185812]TASK:27fc1192 [pid 1260], [tgid 1107], [ot_ai_get] [state R] [po
2025-12-04 16:01:13
494
原创 xshell and ftp 免费下载
网址:https://www.netsarang.com/zh/ (人家都免费了 有些人真恶心,浪费人时间,TM的下了一串 病毒软件)
2021-04-15 18:11:06
148
原创 基于XML和注解的声明式事物控制
步骤基于xml配置pom.xml文件构建业务代码配置ApplicationContext.xml文件测试1 pom.xml文件中需要添加的依赖 <!--spring-context.jar这个jar 文件为Spring 核心提供了大量扩展。可以找到使用Spring ApplicationContext特性时所需的全部类,JDNI 所需的全部类,instrumentation组件以及校验Validation 方面的相关类。外部依赖spring-beans, (spring-ao
2021-01-18 02:36:37
228
原创 递归-斐波那契
递归的应用递归就是一个函数调用自己的行为。举例:计算斐波那契#include<iostream>#include<time.h>using namespace std;// 这里没有进行 记录 int Find1(int n){ if(n==0||n==1) return n; else return Find1(n-2)+Find1(n-1); }// 定义一个数组Memo用来以及计算出来的 Fibonacc数int Memo[100];int
2020-08-04 21:50:02
191
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅
1