代码 import numpy as np import matplotlib.pyplot as plt t = np.linspace(0, 2*np.pi, 100) x = 16 * np.sin(t) ** 3 y = 13 * np.cos(t) - 5 * np.cos(2*t) - ...
分类:
其他好文 时间:
2020-06-19 19:22:53
阅读次数:
163
# 切换grid账户 [root@rac1 ~]# su - grid # 连接数据库 [grid@rac1 ~]$ sqlplus / as sysasm # 查看实例名 SQL> select instance_name from v$instance; INSTANCE_NAME +ASM1 ...
分类:
数据库 时间:
2020-06-19 12:21:12
阅读次数:
130
一、什么是Selenium? Selenium是一个基于浏览器的自动化测试工具,它提供了一种跨平台、跨浏览器的端到端的web自动化解决方案。Selenium主要包括三部分:Selenium IDE、Selenium WebDriver 和Selenium Grid。 Selenium IDE:Fir ...
分类:
编程语言 时间:
2020-06-18 22:03:20
阅读次数:
65
(1)保证了类型的安全性:泛型约束了变量的类型,保证了类型的安全性。例如List<int>和ArrayList。List<int>集合只能加入int类型的变量,ArrayList可以Add任何常用类型,编译的时候不会提示错误。 (2)避免了不必要的装箱、拆箱操作,提高程序的性能:泛型变量固定了类型, ...
分类:
其他好文 时间:
2020-06-18 16:07:05
阅读次数:
51
题目: 给定一个包含了一些 0 和 1 的非空二维数组 grid 。 一个 岛屿 是由一些相邻的 1 (代表土地) 构成的组合,这里的「相邻」要求两个 1 必须在水平或者竖直方向上相邻。你可以假设 grid 的四个边缘都被 0(代表水)包围着。 找到给定的二维数组中最大的岛屿面积。(如果没有岛屿,则 ...
分类:
其他好文 时间:
2020-06-17 23:36:53
阅读次数:
78
渲染出来之后就是这个样子了 1. 使用的话是借用一个vue依赖 > vue-table-with-tree-grid < 在依赖中安装 2. 在项目的main.js文件中引入并且注册为全局组件 // 引入树形控件 import ZkTable from 'vue-table-with-tree-gr ...
分类:
其他好文 时间:
2020-06-17 23:30:23
阅读次数:
115
添加属性 selModel:new Ext.selection.CheckboxModel({ checkOnly: true }), me.grid = Ext.create('Ext.grid.Panel', { store: me.store, border: false, //selType ...
分类:
Web程序 时间:
2020-06-17 20:31:38
阅读次数:
66
添加监听事件:afterlayout listeners: { afterlayout: function (grid) { debugger; var records = grid.getStore().getRange(); for (var i = 0; i < records.length; ...
分类:
Web程序 时间:
2020-06-17 20:28:06
阅读次数:
65
1 <Grid 2 Width="200" 3 Height="200" 4 Margin="0,0,0,0" 5 HorizontalAlignment="Center" 6 VerticalAlignment="Center"> 7 9 <Border 10 Name="Mask" 11 Gri ...
分类:
其他好文 时间:
2020-06-17 18:21:26
阅读次数:
76
How to auto-generate a C# class file from a JSON string [closed] Visual Studio 2012 (with ASP.NET and Web Tools 2012.2 RC installed) supports this nat ...