import java.util.Stack; public class CQueue { Stack<Integer> stack1 = new Stack<>(); Stack<Integer> stack2 = new Stack<>(); public CQueue() { } public ...
分类:
其他好文 时间:
2020-08-07 12:30:51
阅读次数:
63
一.源码环境的搭建: @Component @Scope(scopeName = ConfigurableBeanFactory.SCOPE_SINGLETON,proxyMode = ScopedProxyMode.TARGET_CLASS) public class MyMath impleme ...
分类:
编程语言 时间:
2020-07-30 14:24:46
阅读次数:
64
1、简介(基于s3c2440 linux) 在内核调试技术之中,最简单的就是printk的使用了,它的用法和C语言应用程序中的printf使用类似,在应用程序中依靠的是stdio.h中的库,而在linux内核中没有这个库,所以在linux内核中,使用这个printk就要对内核的实现有一定的了解。 p ...
分类:
系统相关 时间:
2020-07-29 21:55:06
阅读次数:
89
1. 简介 WebMvcConfigurer配置类其实是Spring内部的一种配置方式,采用JavaBean的形式来代替传统的xml配置文件形式进行针对框架个性化定制,可以自定义一些Handler,Interceptor,ViewResolver,MessageConverter。基于java-ba ...
分类:
编程语言 时间:
2020-07-28 17:06:19
阅读次数:
82
今天看NHibernate文档,发现了NHibernate提供批量操作数据的支持,目前仅支持sql server和Oracle,果断要试试啊。结果发现,竟然批量插入Oracle数据无效。以下是我的hbm配置文件内容。 1 <hibernate-configuration xmlns="urn:nhi ...
分类:
数据库 时间:
2020-07-28 14:35:00
阅读次数:
85
1.dart语言编写的flutter。跨端,IOS,安卓,web。 2.Serverless,服务器后台运维集成化,开箱即用,适用于nodejs,让前端人员可以不再被运维所困。 3.WebAssembly ,一个可以把其他语言转化成二进制的字节码,然后让浏览器像解析JS一样解析这些字节码,使得某些w ...
分类:
其他好文 时间:
2020-07-27 09:24:44
阅读次数:
77
Lightbend推出的微服务框架Lagom,与Akka Typed自然耦合,为实现Domain-Driven Designed Distributed Application提供了完整的解决方案。 ...
分类:
其他好文 时间:
2020-07-26 19:04:18
阅读次数:
102
这个层序遍历要求返回每层的节点,正常的BFS从队列中弹出一个节点后就判断其有没有左子树和右子树,所以直接用BFS实现的话无法分层输出。 需要记录每层的节点数目,增加一个for循环就可以了。 /** * Definition for a binary tree node. * public class ...
分类:
编程语言 时间:
2020-07-25 23:51:28
阅读次数:
72
1、定义 Service package com.example.scangundemo_as; import android.app.ActivityManager; import android.app.Service; import android.content.ComponentName; ...
分类:
移动开发 时间:
2020-07-21 22:26:20
阅读次数:
106
import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box"); const elBody = document.body; const assignPoi ...
分类:
Web程序 时间:
2020-07-21 22:21:20
阅读次数:
88