CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 WEB源码

资源列表

« 1 2 ... .35 .36 .37 .38 .39 17440.41 .42 .43 .44 .45 ... 18923 »
  1. TicTacToe

    0下载:
  2. 网络三子棋,可以利用服务端登录,输入本机IP进行对战-Three-game network, you can use the server log in, enter the local IP for the war
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-05-05
    • 文件大小:12.5kb
    • 提供者:王聪
  1. TicTacToe

    0下载:
  2. (1)该类包含一个 3×3 的二维整型数组,其访问类型为 private (2)定义一个构造函数,用来将该数组初始化为 0 (3)允许 2 个玩家,当第 1 个玩家选定一个位置后,在该位置摆放一个 1; 当第 2 个玩家选定一个位置后,在该位置摆放一个 2; (4)在每一步后,判断游戏是否结束,是否出现赢家 -(1) This class contains a two-dimensional array of integers 33, whose access type is private (
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1.11kb
    • 提供者:李四
  1. Date

    0下载:
  2. 一个日期类 Date,其功能包括: (1)能够以不同的格式输出日期,如: MM/DD/YYYY (String, String, String) June 14, 2014 (String, int, int) 2015 年 3 月6 日 (int, int, int) (2)定义三个重载的构造函数,在创建 Date 对象时,可用以上三种格式来进行初始化。 -A date class Date, which include: (1) can be in different formats
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1.43kb
    • 提供者:李四
  1. ColorWord

    0下载:
  2. 实现一个图形用户界面,在该界面上有一个静态文本框,里面有一段文 字。另外还有两个单选按钮,用于设置文字的颜色:蓝色或红色。当用户选定某个颜色 后,文本框中的文字的颜色随即发生了变化。-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:
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1.02kb
    • 提供者:李四
  1. SimpleNotepad

    0下载:
  2. 在 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
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:1.52kb
    • 提供者:李四
  1. ParallelSum

    0下载:
  2. ,采用多线程的方法计算一个数组的各个元素之和。具体来说,该数组为 整型数组 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
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:901byte
    • 提供者:李四
  1. itcast

    0下载:
  2. JAVA中数组排序方法,包括冒泡、选择、插入、快速、希尔排序方法-Array sorting method in JAVA
  3. 所属分类:JavaScript

    • 发布日期:2017-05-05
    • 文件大小:6.1kb
    • 提供者:
  1. BubbleSort

    0下载:
  2. 冒泡排序法重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。-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
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:734byte
    • 提供者:
  1. QuickSort

    0下载:
  2. 快速排序法通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-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
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:945byte
    • 提供者:
  1. day14_System

    0下载:
  2. 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
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:8.7kb
    • 提供者:
  1. day14_Math

    0下载:
  2. 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.
  3. 所属分类:Java Develop

    • 发布日期:2017-05-05
    • 文件大小:6.3kb
    • 提供者:
  1. day14_Calendar

    0下载:
  2. 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,
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:7.81kb
    • 提供者:
« 1 2 ... .35 .36 .37 .38 .39 17440.41 .42 .43 .44 .45 ... 18923 »
搜珍网 www.dssz.com