1.用户设置 root@host# mysql -u root -p Enter password:******* mysql> use mysql; Database changed mysql> INSERT INTO user (host, user, password, select_pri ...
分类:
数据库 时间:
2020-05-01 16:34:02
阅读次数:
71
通过一个例子,来简单说一下创建对象时调用顺序问题。这里只是初步简单了解一下,并不深入。 有一个父类A,其代码如下: 1 class HelloA { 2 public HelloA(){ 3 System.out.println("HelloA"); 4 } 5 { 6 System.out.pri ...
分类:
其他好文 时间:
2020-04-25 17:08:57
阅读次数:
65
二、容器 18.java 容器都有哪些? 如图: 首先分为Collection、Map; Collection下分为List、Set和Queue; List下分为ArrayList和LinkedList; Set下分为HashSet、LinkedHashSet和TreeSet; Queue下有Pri ...
分类:
编程语言 时间:
2020-04-22 12:51:47
阅读次数:
59
03、 增删改查(curd)(重点 记忆) 3.1增加、插入——insert + + + + + + + | Field | Type | Null | Key | Default | Extra | + + + + + + + | id | int(10) unsigned | NO | PRI ...
分类:
其他好文 时间:
2020-04-20 16:19:39
阅读次数:
66
#include<stdio.h>#include<string.h>intm,n,c;intnum[10001],flag[10001],pri[10001];intget(intd){if(num[d]!=-1)returnnum[d];num[d]=-2;intt=d,sum=0;while(t){sum+=(t%10)*(t%10);t/=10;}t=get(sum
分类:
其他好文 时间:
2020-04-17 15:24:21
阅读次数:
60
1.之前学的(数字,字符串,布尔值) #python3中所有的数字都是int类型,字符串时str类型,列表都是list类型,元组都是tuple类型,字典是dict类型,布尔值是bool类型 #数字(int)对应的魔法: a1="123" b=int(a1) #字符串转变成数字 b=b+100 pri ...
分类:
其他好文 时间:
2020-04-16 20:56:29
阅读次数:
85
参考文档:https://gobyexample.com/ 数组 package main import "fmt" func main() { var a [5]int fmt.Println("emp:", a) a[4] = 100 fmt.Println("set:", a) fmt.Pri ...
分类:
编程语言 时间:
2020-04-14 10:35:15
阅读次数:
99
package ren.redface.demo; public class ArrayDemo { public static void main(String[] args) { // 定义数组 int[] arr = { 11, 22, 33, 44, 55 }; System.out.pri ...
分类:
编程语言 时间:
2020-04-12 18:47:41
阅读次数:
88
class BinaryTree <T extends Comparable<T>>{ private class Node{ private Comparable<T> data;//可以比较大小 private Node parent;//保存父节点 private Node left; pri ...
分类:
其他好文 时间:
2020-04-11 18:59:38
阅读次数:
84
#1. clear方法清除字典中所有的项,这是一个原地操作,所以无返回值(或则说返回None) d = {'name':"tom"} d.clear() print(d) #the result : {} #2. fromkeys方法使用给定的键建立新的字典,每个键都对应一个默认的值None pri ...
分类:
其他好文 时间:
2020-04-09 09:17:00
阅读次数:
81