
Java
FlyuZ
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Java中BigInteger类常用接口方法
Modifier and Type Method and Description BigInteger add(BigInteger val) 返回值为(this + val) BigInteger subtract(BigInteger val) 返回值为(this - val) BigInteger multiply(BigInteger val) 返回值为(this原创 2017-11-28 22:03:47 · 1820 阅读 · 0 评论 -
Java简易五子棋
界面长这个样子:重要代码分为三个类: 界面类,模拟下棋类,棋子类界面类代码:import java.awt.event.*; import java.awt.*; import javax.swing.*;public class GameFrame extends JFrame { private static final long serialVersionUID = 1L; p原创 2017-12-20 17:19:20 · 1006 阅读 · 0 评论 -
Java--TCP实现文件传送
客户端: import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.InetSocketAddress; import java.原创 2018-01-07 18:58:09 · 920 阅读 · 0 评论