摘要:
安装zsh #安装zsh yum install -y zsh #安装git (已经安装跳过) yum install -y git #查看当前的shell [root@localhost hky]# echo $SHELL /bin/bash #查看已经安装的shell [root@localho 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(284)
评论(0)
推荐(0)
摘要:
Node和NPM 下载地址:https://nodejs.org/en/download/ 查看node版本 node -v C:\Users\username>node -v v12.16.0 安装完成Node应该自带了NPM了,在控制台输入npm -v查看 npm -v C:\Users\use 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(34)
评论(0)
推荐(0)
摘要:
SpringBoot体验 编程环境 idea(maven工程) 全文附代码 新建maven 工程 2. 导入依赖包 创建 springboot 启动类 @SpringBootApplication public class TestApplication { public static void m 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(43)
评论(0)
推荐(0)
摘要:
导入lombok依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> </dependency> mapper接口继承Mapper 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(31)
评论(0)
推荐(0)
摘要:
查询 List select(User record) User user = new User(); //条件 user.setName("hky"); user.setAge(22); //查询(参数是一个对象类型) List<User> users = userMapper.select(us 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(745)
评论(0)
推荐(0)
摘要:
问题描述 [root@************ /]# mysql -u root -p Enter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(72)
评论(0)
推荐(0)
摘要:
简单查询 语法句式如下: SELECT filed1,filed2 ... filedn FROM tablename [WHERE CONDITION11] [GROUP BY filedm [HAVING CONDITION2]] [ORDER BY filedn [ASC|DESC]] fil 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(38)
评论(0)
推荐(0)
摘要:
#pragma once #ifndef _SEQSTACK_ #define _SEQSTACK_ #include <iostream> using namespace std; typedef int DataType; struct SeqStack { int MAXNUM; int t; 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(63)
评论(0)
推荐(0)
摘要:
#pragma once #ifndef _LINKSTACK_ #define _LINKSTACK_ #include<iostream> using namespace std; typedef int DataType; //链栈结构信息 struct node { DataType inf 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(73)
评论(0)
推荐(0)
摘要:
顺序表 #ifndef SEQLIST_H #define SEQLIST_H //顺序存储 typedef int DataType; struct Node { int MaxNum; //顺序表表中最大存储元素个数 int num; DataType *element; }; typedef 阅读全文
posted @ 2022-05-10 23:18
iforeverhz
阅读(45)
评论(0)
推荐(0)