06 2019 档案

摘要:本文根据书籍《sql必知必会》,整理而成。 基本概念 数据库 database:保存有组织的数据的容器,通常是一个文件或一组文件。 数据库管理系统 DBMS:又称数据库软件,数据库是通过 DBMS 创建和操纵的容器。 表 table:某种特定类型数据的结构化清单。 模式 schema:关于数据库和表 阅读全文
posted @ 2019-06-24 08:54 colin220 阅读(194) 评论(0) 推荐(0) 编辑
摘要:C 语言数据类型有以下几类。 基本类型: 整数类型 小数类型 派生类型: 指针类型 数组类型 结构类型 共用体类型 枚举类型 空类型 数组 数组 Arrray 就是一些具有相同类型的数据的集合,这些数据在内存中依次挨着存放,彼此之间没有缝隙。 C 语言数组属于构造数据类型。一个数组可以分解为多个数组 阅读全文
posted @ 2019-06-19 16:59 colin220 阅读(263) 评论(0) 推荐(0) 编辑
摘要:什么是 pull requests ? Pull Request (后面简称 PR)的流程简述: 一个在 github 上面的仓库,例如为 company/example。tom 基于这个 company/example 项目添加了一些新功能,tom 想将这个新功能合并到 company/examp 阅读全文
posted @ 2019-06-18 16:15 colin220 阅读(748) 评论(0) 推荐(0) 编辑
摘要:C 语言是一种面向过程的高级语言。 运行速度与汇编语言编写的代码运行速度几乎一样。C 语言的源码文件扩展名为 .c 例如 hello.c 。 概述 C 语言有三套标准分别是 C89 C99 C11,目前最常用的是 C99 标准。 C 编译器,写在源文件中的源代码需要编译,转化为机器语言,这样 CPU 阅读全文
posted @ 2019-06-18 14:08 colin220 阅读(507) 评论(0) 推荐(0) 编辑
摘要:Angular是什么,官网的定义是:Angular is a platform that makes it easy to build applications with the web. 官网的对Angular的定义是一个平台,这个平台可以让你很轻易的去构建一个web应用。 官网还有另外一段话:T 阅读全文
posted @ 2019-06-18 14:07 colin220 阅读(125) 评论(0) 推荐(0) 编辑
摘要:Python的内容包括:数据类型、语法、函数、高阶函数、模块、面向对象。并比较与Java的异同,学习一门新语言,找一个熟悉的语言来类比,可以更好的上手。 数据类型 Python中一切皆对象,这点其实和Java还是有些不同。Java将数据分为基本数据类型和引用数据类型。Python中有不变的数据类型, 阅读全文
posted @ 2019-06-18 14:06 colin220 阅读(145) 评论(0) 推荐(0) 编辑
摘要:SpringBoot连接mysql需要在application.properties添加一些微调信息,Spring自带连接池,如果用Spring自带的连接池: spring.datasource.url=jdbc:mysql://localhost:3306/jelly?useSSL=false&c 阅读全文
posted @ 2019-06-18 14:05 colin220 阅读(211) 评论(0) 推荐(0) 编辑
摘要:nohup和&主要是把命令放在后台运行。 & 可以在命令后面后面加上&实现后台运行。 test.sh & 如果后面想查看结果,通过通过重定向 > 命令,将结果保存到 out.txt 中。 command > out.txt 2>&1 & 上面命令看成两部分 command > out.txt 和 最 阅读全文
posted @ 2019-06-18 14:03 colin220 阅读(1945) 评论(0) 推荐(0) 编辑
摘要:git 在合并分支时有两种策略,是 Fast-forward 和 recursive。 合并分支时有如下两种情况。 Situation One 现在在 master 分支上有两次提交。基于 c2 的提交创建了分支 feature,在分支 feature 上做了两次提交。如下图。 此时如果将 feat 阅读全文
posted @ 2019-06-16 23:33 colin220 阅读(211) 评论(0) 推荐(0) 编辑
摘要:The Bash shell is commonly used interactively: It lets you enter and edit commands, then executes them when you press the Return key.The Bash shell ca 阅读全文
posted @ 2019-06-04 10:14 colin220 阅读(174) 评论(0) 推荐(0) 编辑
摘要:Shiro:Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session manage 阅读全文
posted @ 2019-06-03 09:01 colin220 阅读(165) 评论(0) 推荐(0) 编辑