00. Table of Contents @ 01. QUICK REMINDER OF THE PRINCIPLES In our introductory article on inkjet waveforms, we described what a waveform is and how ...
分类:
其他好文 时间:
2021-01-27 13:09:53
阅读次数:
0
图片: 使用pygame编写的代码源代码: import pygame pygame.init() canvas=pygame.Surface((4096,4096)) rgb=[0,0,0] x_y=[0,0] for r in range(256): rgb[2]=0 rgb[1]=0 for ...
分类:
其他好文 时间:
2021-01-27 13:07:13
阅读次数:
0
Integer Inquiry poj1503 题目 Problem Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of power ...
分类:
其他好文 时间:
2021-01-27 13:01:44
阅读次数:
0
java学习数字与字符串2 字符串转换 内容 就是字符串和数字相互转换的方法,至于用途。。刚学习也不清楚。 基本内容 数字转字符 使用String类的静态方法valueOf int i = 5; String str = String.valueOf(i); 先把基本类型封装为对象,然后调用来自上帝 ...
分类:
编程语言 时间:
2021-01-25 10:43:01
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14311268.html 数组形式的整数加法 题目链接:https://leetcode-cn.com/problems/add-to-array-form-of-integer/ 题目 对于非负整数 X 而 ...
分类:
编程语言 时间:
2021-01-22 12:22:52
阅读次数:
0
java集合 集合和数组是对多个数据进行存储操作的结构,简称java容器 数组初始化以后,其长度就确定了;数组一旦定义好,其元素的类型也就确定。 Collection接口 List接口 Vector ArrayList LinkedList Set接口 HashSet LinkedHashSet T ...
分类:
其他好文 时间:
2021-01-21 10:39:12
阅读次数:
0
1.包装类的种类 2. 转换图解 3.具体代码 public class JunitTest { //基本数据类型 > 包装类 :装箱 @Test public void test1() { //调用包装类的 构造器 int i =10; Integer int1 = new Integer(i); ...
分类:
其他好文 时间:
2021-01-19 11:59:54
阅读次数:
0
原文:How to Build a Multiplayer (.io) Web Game, Part 1 GitHub: https://github.com/vzhou842/example-.io-game 深入探索一个 .io 游戏的 Javascript client-side(客户端)。 ...
分类:
Web程序 时间:
2021-01-19 11:49:17
阅读次数:
0
ECNU 1000 A + B Problem 链接 https://acm.ecnu.edu.cn/problem/1000 题目 单点时限: 1.0 sec 内存限制: 256 MB 输入格式 Two integer a,b(<=10) . Process to end of file. 输出格 ...
分类:
其他好文 时间:
2021-01-19 11:49:06
阅读次数:
0
Java泛型 Java1.5中引入泛型,允许在定义类、接口时,通过一个标识来表示类中某个属性的类型或是某个方法的返回值及参数类型。类型参数在使用时确定。 不使用泛型的问题 类型不安全 强制类型转换出错 集合中使用泛型 ArrayList<Integer> list = new ArrayList<> ...
分类:
编程语言 时间:
2021-01-18 11:30:29
阅读次数:
0