Java多线程 进程和线程 什么是进程? 程序是静止的,运行中的程序就是进程。 进程的三个特点: **1.动态性:**进程是运行中的程序,要动态的占用内存,CUP和网络等资源。 **2.独立性:**进程与进程之间是相互独立的,彼此有自己的独立内存区域。 **3.并发性:**是指同一个时间段内多个任务 ...
分类:
编程语言 时间:
2021-06-02 20:40:57
阅读次数:
0
ArrayList实现 code import java.util.ArrayList; import java.util.Collections; public class PokerDemo { public static void main(String[] args) { // 使用Arra ...
分类:
编程语言 时间:
2021-06-02 16:52:04
阅读次数:
0
https://www.tessferrandez.com/blog/2008/03/25/net-debugging-demos-lab-7.html This is the last debugging lab in the .NET Debugging Labs series. By now ...
分类:
Web程序 时间:
2021-06-02 14:43:49
阅读次数:
0
package leetcode; import java.util.ArrayList; import java.util.List; public class demo_22 { public List<String> generateParenthesis(int n) { List<Stri ...
分类:
其他好文 时间:
2021-06-02 14:38:15
阅读次数:
0
对于id自动生成的方式,有注解和配置两种。 含义相同:不过设置自动增长的时候必须保证数据库中id是自增,assign_id和assign_uuid则不需要。 yml配置: mybatis-plus: #type-aliases-package: com.monster.demo.entity glo ...
分类:
数据库 时间:
2021-06-02 13:10:19
阅读次数:
0
创建线程 1.继承Thread类,重写run()方法 public class ThreadCreateDemo1 { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); ...
分类:
编程语言 时间:
2021-06-02 12:39:26
阅读次数:
0
public class TestDemo { public static void main(String[] args) { //打印三角形 for (int i = 1; i <= 5; i++) {![](https://img2020.cnblogs.com/blog/2406104/20 ...
分类:
其他好文 时间:
2021-05-25 17:53:28
阅读次数:
0
package com.oracle.demo03; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public ...
分类:
编程语言 时间:
2021-05-24 17:07:22
阅读次数:
0
python 实现 kakfa 的 生产消费模式 和 发布订阅模式(已安装好 kafka 的情况下) 生产者 producer_demo.py from kafka import KafkaProducer, KafkaConsumer from kafka.errors import kafka_ ...
分类:
编程语言 时间:
2021-05-24 16:44:34
阅读次数:
0
package jueduibuju; import java.awt.Container; import javax.swing.*; public class Demo extends JFrame{ public Demo() { setBounds(100, 100, 200, 150); ...
分类:
其他好文 时间:
2021-05-24 16:08:45
阅读次数:
0