查询: 一.查看所有信息select * from 表名;select * from stu; 二.显示指定字段select 字段名1, 字段名2 ... from 表名select first_name, age from stu;SELECT DISTINCT id, last_name FRO ...
分类:
数据库 时间:
2020-05-13 12:19:32
阅读次数:
65
List接口 List接口:元素有序,可重复,集合中每个元素都有其对应的索引。 常用实现类有:ArrayList、LinkedList、Vector。 ArrayList源码 JDK 1.7情况下: 使用空参构造器创建集合,底层创建了长度为10的Object类型数组elementData。 扩容机制 ...
分类:
其他好文 时间:
2020-05-12 20:42:59
阅读次数:
71
Another OCD Patient Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 2259 Accepted Submission(s) ...
分类:
其他好文 时间:
2020-05-12 18:40:48
阅读次数:
56
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2020-05-12 15:19:35
阅读次数:
71
Week 2 3.5.2020 Overview This week, we have mainly learned two parts: 1. How to match the same feature points in two images from different viewpoints. ...
分类:
其他好文 时间:
2020-05-12 00:03:20
阅读次数:
112
《Head First设计模式》看了一部分才对设计模式有了初步的了解:它其实是开发过程中很多前人的经验与智慧的总结,帮助你在开发时采取更好的方式去设计各个类、方法、以及它们之间的调用、实现方式,让代码保持灵活性的同时又能更好地复用。基于学过一块知识一定要用文字记录、总结、巩固,而不是走马观花的原则, ...
分类:
编程语言 时间:
2020-05-11 19:03:34
阅读次数:
61
(1)openresty的安装参考上一篇博客https://www.cnblogs.com/first-semon/p/12858959.html openresty的安装路径默认实在/usr/local/openresty下 (2)在/usr/local/openresty/nginx/conf/ ...
分类:
其他好文 时间:
2020-05-11 18:36:41
阅读次数:
77
实例 一个简单的 HTML 表单,包含两个文本输入框和一个提交按钮: <form action="form_action.asp" method="get"> First name: <input type="text" name="fname" /> Last name: <input type= ...
分类:
Web程序 时间:
2020-05-11 15:20:15
阅读次数:
191
Problem Statement Problem Vestigium means "trace" in Latin. In this problem we work with Latin squares and matrix traces. The trace of a square matrix ...
分类:
其他好文 时间:
2020-05-11 09:15:09
阅读次数:
68
1.Pair 1.1 Pair定义: namespace std { template<class _T1, class _T2> struct pair { _T1 first; _T2 second; } } 两个成员都是public。 实现一个泛型类函数模板,将一个pair写入一个stream ...
分类:
编程语言 时间:
2020-05-10 23:31:30
阅读次数:
133