安装centos时选择带gui的服务器->选择java环境 问题: Unrecognized option: -vError: Could not create the Java Virtual Machine.Error: A fatal exception has occurred. Progr ...
分类:
其他好文 时间:
2020-05-24 13:50:33
阅读次数:
144
What is the difference between sed and awk sed is a stream editor. It works with streams of characters on a per-line basis. It has a primitive program ...
分类:
其他好文 时间:
2020-05-24 11:34:00
阅读次数:
81
前面的章节是侧重讲解方法的了解和运用,本章节侧重讲解类中设计的一些理念,更多的是一些概念和思维逻辑 本章重点内容: 1、Python和OOP 2、OOP和继承:“is-a”关系 3、OOP和组合:“has-a”关系 4、OOP和委托:“包装器”代理对象 5、类的伪私有属性 6、方法是对象:绑定或未绑 ...
分类:
编程语言 时间:
2020-05-24 09:51:56
阅读次数:
70
Maven 全局配置 修改 Maven 默认的全局配置文件: 类 Unix 系统: Mac OS / Linux 默认在 ~/.m2/settings.xml Windows 系统:一般在 Maven 安装目录的 conf/settings.xml <?xml version="1.0" encod ...
分类:
其他好文 时间:
2020-05-23 20:34:28
阅读次数:
99
问题: 给定一个数组,其为循环数组(最后一个元素的下一个元素为第一个元素)。 求连续子数组和的最大值。 Example 1: Input: [1,-2,3,-2] Output: 3 Explanation: Subarray [3] has maximum sum 3 Example 2: Inp ...
分类:
其他好文 时间:
2020-05-23 18:26:27
阅读次数:
54
It’s been a while since Cisco has announced Smart License to replace Traditional PAK-based licensing. Overall, this new system brings loads of benefit ...
分类:
系统相关 时间:
2020-05-23 12:53:18
阅读次数:
259
1.异常 是指在程序在运行过程中所发生的不正常事件,它会中断正字运行的程序; 异常处理:Java编程语言使用异常处理机制来为程序所发生的不正常事假提供错误处理的能力; Throwable:Java中所有异常的父类Throwable(可抛出); Error(错误)和Exception(异常)是Thro ...
分类:
编程语言 时间:
2020-05-22 00:23:22
阅读次数:
102
数据库的一些概念 行为:代表的是对象能做什么 对象 对象 之间有没有什么关系?is a(继承) has(拥有) use(使用) 用户对象:用户名,登录名,密码,性别,家庭地址,联系电话,出生日期,个人照片 数据库中,实际上存放的是对象的属性的值。 老师 学生(has) 父母 子女(has) 职员 项 ...
分类:
数据库 时间:
2020-05-21 21:19:45
阅读次数:
88
一.使用默认分页 1.settings 设置 2.参数 1.第几页 2.每页大小 3.最大页 二.自定义分页 avue 前端分页参数: 结果如下 如果某个视图不需要分页,视图设置分页类为 None 即可 ...
分类:
编程语言 时间:
2020-05-21 00:36:02
阅读次数:
79
Description Given an integer array , find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Examp ...
分类:
其他好文 时间:
2020-05-18 22:47:34
阅读次数:
65