技术专区
-
idea中,一个 moudle由一个 .iml文件维护, 导入module的时候, 选择导入 .iml文件,或者 pom.xml(有时间验证一下这个)
idea中,一个 moudle由一个 .iml文件维护, 导入module的时候, 选择导入 .iml文件,或者 pom.xml(有时间验证一下这个) 一个project中, 也有 .iml文件, 但是 新建的 EmptyProject, 好像是 没有 .iml文件, 之后.idea文件…
-
铁矿石日线触顶通过5分钟级别转向完成
铁矿石日线 铁矿石5分钟,从日线头部开始下跌 铁矿石分时 豆粕分时,这个时候既不能做空,因为做空能量不足。也不能做多。
-
LeetCode 90 Subsets II 回溯
Given an integer array nums that may contain duplicates, return all possible subsets (the power set). The solution set must not contain duplicate subsets. Return the solution in any order. Solution …
-
Icon,ImageIcon标签
1 public class IconDemo extends JFrame implements Icon { 2 int width; 3 int height; 4 public IconDemo(){ 5 } 6 public IconDemo(int width,int height){ 7 this.width=width; 8 this.height=height; 9 } 10 …
-
6_6 调查
1 """ 2 调查 3 """ 4 favorite_numbers = {'li jingwen': 322, 5 'li yunyao': 22, 6 'wei liangjing': 482, 7 'guo xuezhe': 45, 8 'zhao yuliang': 20, 9 'hu xinyi': 35 10 } 11 favorite_languages = { 12 'je…
-
第一个程序Helloworld
helloworld 1.随便新建一个文件夹,存放代码 2.新建一个java文件 后缀名为.java 文件名需要为Helloworld 3.书写代码 public class Helloworld{ public static void main(String[] args){ System.out.println("hello…
-
LeetCode 797 All Paths From Source to Target 回溯
Given a directed acyclic graph (DAG) of n nodes labeled from 0 to n - 1, find all possible paths from node 0 to node n - 1 and return them in any order. The graph is given as follows: graph[i] is a l…
-
FutureTask源码深度剖析
FutureTask源码深度剖析 前言 在前面的文章自己动手写FutureTask当中我们已经仔细分析了FutureTask给我们提供的功能,并且深入分析了我们该如何实现它的功能,并且给出了使用ReentrantLock和条件变量实现FutureTask…
-
专题3-串口驱动程序设计-第2课串口驱动分析-初始化
1、概述 (1)串口驱动程序结构(2)串口驱动中的重要数据结构体 用户态发生write时->VFS中的sys_write,先经过file_operation中的tty_write,这个tty_fops是在哪里注册的? 2、回溯-初始化分析 两个重要…
-
C++ final的用法
// Online C++ compiler to run C++ program online #include <iostream> struct Base { virtual void print_val() { std::cout << val << std::endl; } double val; int num; }; struct A final…