SV Array 整理下system verilog中数组的用法,备忘。 [TOC] 1.定宽数组 + 只在array名字之前定义位宽的是packed array,packed array的元素是单独的位 + array名字之后定义数组大小的是unpacked array; + 名字前后都有定义的是 ...
分类:
编程语言 时间:
2020-04-18 15:32:03
阅读次数:
146
Python3 File(文件) 方法 file 对象使用 open 函数来创建,下表列出了 file 对象常用的函数: | 序号 | 方法及描述 | | : | : | | 1 | "file.close()" 关闭文件。关闭后文件不能再进行读写操作。 | | 2 | "file.flush()" ...
分类:
编程语言 时间:
2020-04-18 13:43:24
阅读次数:
79
这里我们选用较新版本 kubeadm-1.17.4 + docker-19.03.5 + flannel-0.12,并开启ipvs。 前置条件: 一台或多台机器 操作系统:CentOS7.x-86_x64 运行内存:2GB或更多 系统内核:2CPU或更多 硬盘大小:30GB或更多 集群中所有机器之间 ...
分类:
Web程序 时间:
2020-04-16 11:45:39
阅读次数:
112
Chapter 1: Nontype Template Parameters 第3章 非类型模板参数 For function and class templates, template parameters don’t have to be types. They can also be ordi ...
分类:
其他好文 时间:
2020-04-16 10:33:35
阅读次数:
88
过去的一段时间,AndroidX?软件包下的?Activity/Fragmet?的 API 发生了很多变化。让我们看看它们是如何提升Android 的开发效率以及如何适应当下流行的编程规则和模式。
分类:
移动开发 时间:
2020-04-13 00:39:10
阅读次数:
101
一、Boosting 1、Given the training data D = {$(x^{1},y^{1}),(x^{2},y^{2}),(x^{3},y^{3}),......(x^{m},y^{m})$} $x^{i}\in R^n$ $y\in (+1,-1)$ for each data ...
分类:
其他好文 时间:
2020-04-13 00:32:23
阅读次数:
75
答:Mybatis 仅支持 association 关联对象和 collection 关联集合对象的延迟加 载,association 指的就是一对一,collection 指的就是一对多查询。在 Mybatis 配置文件中,可以配置是否启用延迟加载 lazyLoadingEnabled=true| ...
分类:
其他好文 时间:
2020-04-12 20:10:50
阅读次数:
390
1.要什么实例就造什么对象(对象接收) public class Cat { //生产 public void get() { System.out.println("生产一只猫"); } } public class Dog { //生产 public void get() { System.ou ...
分类:
其他好文 时间:
2020-04-12 16:31:49
阅读次数:
49
简介 Combine是Apple在2019年WWDC上推出的一个新框架。该框架提供了一个声明性的Swift API,用于随时间处理值。这些值可以表示多种异步事件。 Publisher协议声明了一种可以随时间传递一系列值的类型。Operators根据从upstream publishers接受到的值采 ...
分类:
其他好文 时间:
2020-04-12 11:07:04
阅读次数:
125
使用 HTML5 doctype,不区分大小写 <!DOCTYPE html> 更加标准的 lang 属性写法 http://zhi.hu/XyIa <html lang="zh-cmn-Hans"> meta 声明文档使用的字符编码 <meta charset='utf-8'> 优先使用 IE 最 ...
分类:
移动开发 时间:
2020-04-10 19:45:26
阅读次数:
100