CLOUD 一、云计算 什么是云计算 基于互联网的相关服务的增加、使用和交付模式 这种模式提供可用的、便捷的、按需的网络访问,进入可配置的计算资源共享池 这些资源能够被快速提供,只需要投入很少的管理工作,或与服务供应商进行很少的交互 通常涉及通过互联网来提供动态易扩展且经常是虚拟化的资源 国际知名云 ...
分类:
其他好文 时间:
2021-01-18 11:00:14
阅读次数:
0
Spring MVC注解配置 关于IDEA的配置 创建好项目以后File → Project Structure → Artifacts 在界面中右击WEB-INF创建一个文件夹lib, 右键文件夹lib → Add Copy of → library Files 然后将所有的包添加进去。 Tomc ...
分类:
编程语言 时间:
2021-01-12 10:56:54
阅读次数:
0
package com.unrealimage.structure;public class For_Demon03 { public static void main(String[] args) { //首先声明这是在做99乘法口诀表 for (int i = 1; i <=9; i++) { ...
分类:
其他好文 时间:
2021-01-11 10:47:58
阅读次数:
0
SQL 操作数据库 概念:结构化查询语言 Structured Quary Language 作用: 1.是一种数据库的查询的标准,对所有的数据库都支持 2.不同的数据库SQL语句可能有点不同 (方言),mysql oracle DB2 sql语句分类 1.DDL:操作数据库、表 数据定义语言?Da ...
分类:
数据库 时间:
2021-01-07 12:07:39
阅读次数:
0
JAVA: class WordDictionary { private Node head; /** * Initialize your data structure here. */ public WordDictionary() { this.head = new Node(null); } ...
分类:
其他好文 时间:
2021-01-06 12:18:38
阅读次数:
0
JAVA 实现: class Trie { private Node head; /** * Initialize your data structure here. */ public Trie() { this.head = new Node(); } /** * Inserts a word ...
分类:
其他好文 时间:
2021-01-06 12:15:16
阅读次数:
0
https://stackoverflow.com/questions/27301960/errorunable-to-locate-adb-within-sdk-in-android-studio 注意在File->project structure中选择sdk等 Finally after se ...
分类:
移动开发 时间:
2021-01-06 11:54:51
阅读次数:
0
S指structure 结构 微信朋友圈结构是由客户端和服务端组成,所以测试就可以从ui前端测试和接口后端测试去考虑。 F指function 功能 这个很简单,就是考虑测试发朋友圈的功能,不赘述。 D指data 数据 不仅微信,任何一款软件无非就是界面加数据组成,所以要考虑不同页面以及不同系统数据是 ...
分类:
其他好文 时间:
2021-01-02 11:28:59
阅读次数:
0
https://www.hex-rays.com/wp-content/static/products/ida/idapro_cheatsheet.html File Operations Parse C header file... Ctrl+F9 Create ASM file... Alt+F ...
分类:
其他好文 时间:
2020-12-30 11:11:25
阅读次数:
0
Numpy数组创建 np.array(list/tuple) # 接收一切序列型对象,如list列表、tuple元组等 数组 (array) 是相同类型的元素 (element) 的集合所组成数据结构 (data structure)。 numpy 数组中的元素用的最多是「数值型」元素 数组常见属性 ...
分类:
其他好文 时间:
2020-12-19 13:11:21
阅读次数:
2