资源列表
jdbc
- insert into命令用于向表中插入数据。 insert into命令格式:insert into <表名> [(<字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )] 例如:往表 MyClass中插入两条记录,这两条记录表示:编号为1的名为Tom的成绩为96.45,编号为2 的名为Joan 的成绩为82.99,编号为3 的名为Wang 的成绩为96.5。-INSET INTO TABLE
pachong
- JAVA爬虫学习DEMO test-JAVA-web reptile DEMO TTT
clwuliu
- 物流配送中心,易读懂,易理解,含有配送中心,客户,库存-Logistics distribution center, easy to read, easy to understand, with distribution centers, customers, inventory
day14_Calendar
- Calendar 类是一个抽象类,它为特定瞬间与一组诸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等日历字段之间的转换提供了一些方法,并为操作日历字段(例如获得下星期的日期)提供了一些方法。-The Calendar class is an abstract class that provides methods for transforming a set of calendar fields such as YEAR, MONTH, DAY_OF_MONTH, HOUR,
day14_Math
- java.lang.Math 类包含的方法进行基本的数字操作,如基本的指数,对数,平方根和三角函数等.-The java.lang.Math class contains methods for performing basic numeric operations such as basic exponents, logarithms, square roots, and trigonometric functions.
day14_System
- System类代表系统,系统级的很多属性和控制方法都放置在该类的内部。该类位java.lang包。由于该类的构造方法是private的,所以无法创建该类的对象,也就是无法实例化该类。其内部的成员变量和成员方法都是static的,所以也可以很方便的进行调用。 -System class on behalf of the system, many of the system-level attributes and control methods are placed in the class
QuickSort
- 快速排序法通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-By sorting the data to be sorted into two separate parts, one part of all the data than the other part of all the data is small, and then press
BubbleSort
- 冒泡排序法重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。-Bubble sorting repeatedly visits the sequence to be sorted, comparing two elements at once, exchanging them if they are in the wrong order. The sequence of visits is r
itcast
- JAVA中数组排序方法,包括冒泡、选择、插入、快速、希尔排序方法-Array sorting method in JAVA
ParallelSum
- ,采用多线程的方法计算一个数组的各个元素之和。具体来说,该数组为 整型数组 a,有 300 个元素。在 main 函数中,对该数组的每个元素进行赋值,值为一 个 1-100 的随机数。然后创建 3 个线程,第 1 个线程负责计算 a[0]~a[99]这 100 个元素 之和;第 2 个线程负责计算 a[100]~a[199]这 100 个元素之和;第 3 个线程负责计算 a[200]~a[299]这 100 个元素之和。最后在 main 函数中汇集各个线程的计算结果,然后 算出最终的结果,即 a
SimpleNotepad
- 在 Windows 操作系统中,有一个记事本(notepad.exe)程序,用来进行文本的编辑。 该程序,实现了该软件的基本功能-In Windows operating system, there is a notepad (notepad.exe) program used for editing text. The program, to achieve the basic functions of the software
ColorWord
- 实现一个图形用户界面,在该界面上有一个静态文本框,里面有一段文 字。另外还有两个单选按钮,用于设置文字的颜色:蓝色或红色。当用户选定某个颜色 后,文本框中的文字的颜色随即发生了变化。-Implement a graphical user interface, this interface has a static text box, with a paragraph of text. Color There are also two radio buttons for setting text:
