Behind the scenes in the computer's memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color ...
分类:
其他好文 时间:
2020-01-29 21:48:12
阅读次数:
94
PAT 甲级 Advanced 1134 Vertex Cover (25) [hash散列] ...
分类:
其他好文 时间:
2020-01-29 17:36:02
阅读次数:
63
"no-alert": 0,//禁止使用alert confirm prompt "no-array-constructor": 2,//禁止使用数组构造器 "no-bitwise": 0,//禁止使用按位运算符 "no-caller": 1,//禁止使用arguments.caller或argum ...
分类:
其他好文 时间:
2020-01-29 12:47:34
阅读次数:
102
题目 Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings o ...
分类:
其他好文 时间:
2020-01-29 01:03:21
阅读次数:
73
job是串行执行的, 执行完上一个才执行下一个 eg:Wordcount案例 val lines = sc.textFile("本地URL or HDFS URL")//详解见代码1 val words = lines.flatMap(line => line.split(" "))//也会返回一个 ...
分类:
其他好文 时间:
2020-01-25 00:56:57
阅读次数:
119
两种文本框:EditText,TextView, 两种按钮:Button,ImageButton, 单选按钮/单选按钮组:RadioButton,RadioGroup 复选框:CheckBox <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
分类:
移动开发 时间:
2020-01-23 21:19:51
阅读次数:
131
f = open("./data/test.txt","r") lines = f.readlines() for line in lines: print(line) UnicodeDecodeError: 'gbk' codec can't decode byte 0xa6 in positio ...
分类:
编程语言 时间:
2020-01-22 23:36:04
阅读次数:
77
文件介绍 文件是数据存放的容器 文件的作用:持久性的存储数据内容 文件组成: 文件名 拓展名(有时候没有使用) 一般不同的扩展名,对应着不同的存储格式 文件内容 文本文件 二进制文件 打开文件 打开: 文件:指定文件路径 模式:控制操作模式 返回一个文件对象 关闭文件 :可以释放相关的系统资源,会立 ...
分类:
编程语言 时间:
2020-01-22 18:27:31
阅读次数:
81
IfcTopologyResource(拓扑资源) IfcTopologyResource定义用于拓扑表示的资源。此资源的主要应用是用于产品模型的形状或几何形式的边界表示。 ISO/IS 10303-42:1994中的定义经过了一个改编过程,其特点是: ①IFC命名惯例的改编(IFC前缀) ②ISO ...
分类:
其他好文 时间:
2020-01-22 11:04:04
阅读次数:
102
使用某高级语言进行 文件操作 ,并 调用该批处理 就能快速实现"简易出题程序". 题库需要另行设计.文件操作请根据具体的语言.(单选/多选/判断都可以尝试) 具体如下: @echo off chcp 65001 mode con cols=80 lines=24 ::题目内容 echo Part 1 ...
分类:
其他好文 时间:
2020-01-20 12:50:36
阅读次数:
83