assign : 对数据赋值,对数组的初始化。但不能对数组中的某一个值进行赋值。 举例:Tuple1 := [1,0,3,4,5,6,7,8,9] // 对数组进行初始化 Val := sin(1.2) + cos(1.2) // 对某一个值进行赋值 Tuple2 := [] // 数组定义 ass ...
分类:
编程语言 时间:
2021-02-25 12:21:03
阅读次数:
0
积少成多 Learning Linux From Scratch(一) 冷知识 bash shell Bourne again shell tty means teletypewriter 电传打字机 命令行界面(command line interface, CLI) 快捷键 Shift + Ct ...
分类:
系统相关 时间:
2021-02-23 14:17:31
阅读次数:
0
翻译自微软官网 https://docs.microsoft.com/en-us/dotnet/desktop/wpf/advanced/dependency-properties-overview?view=netframeworkdesktop-4.8 1、依赖属性和CLR属性 在WPF中,属性 ...
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 1. os.path.abspath(file)返回的是.py文件的绝对路径,也就是settings.py这个文件路径 2. os.path.dirname( ...
分类:
其他好文 时间:
2021-02-20 11:46:09
阅读次数:
0
对抗性潜在自动编码器(ALAE) -论文地址 https://arxiv.org/abs/2004.04467 -项目源码 https://github.com/podgorskiy/ALAE 摘要 自动编码器网络是无监督的方法,旨在通过同时学习编码器-生成器映射来结合生成性和代表性。尽管进行了广泛 ...
分类:
Web程序 时间:
2021-02-19 13:45:29
阅读次数:
0
MySQL中的函数 <1> 加密函数 password(str) 该函数可以对字符串str进行加密,一般情况下,此函数给用户密码进行加密 select password('ruochen666'); select PASSWORD(ename) from emp; md5(str) 对字符串str进 ...
分类:
数据库 时间:
2021-02-19 13:33:53
阅读次数:
0
Unsafe Rust So far, you can see that Rust has a strict memory safety guarantee at compile time. However, sometimes this safety guarantee can be annoyi ...
分类:
其他好文 时间:
2021-02-17 14:12:34
阅读次数:
0
the Computing Research Repository (CoRR) 论文地址:https://arxiv.org/abs/1909.11898 代码地址:https://github.com/hongwang600/DocRed Abstract 在本文中,我们进一步应用预先训练的语言 ...
分类:
其他好文 时间:
2021-02-10 13:32:54
阅读次数:
0
论文标题:ERNIE: Enhanced Representation through Knowledge Integration 作者:Yu Sun 作者单位/个人主页:https://dblp.uni-trier.de/pid/62/3689.html 论文档次: CoRR abs收录 论文引用 ...
分类:
其他好文 时间:
2021-02-10 13:13:28
阅读次数:
0
回到顶部 一、java.util.Date 1、只用于显示系统时间,其大部分操作由Calendar代替。 格林威治时间(GMT):指的是1970年1月1日0时,不同地区有时间差。 默认输出格式:星期、月、日、时、分、秒、时区、年 2、构造方法: (1)public Date(); //无参构造创建的 ...
分类:
编程语言 时间:
2021-02-06 12:19:42
阅读次数:
0