javaSwing酒店管理系统

一、 使用方法:

在使用前,需要到druid.properties 配置文件中,修改自己对应于自己数据库的属性;如用户名,密码等

driverClassName=com.mysql.cj.jdbc.Driver
url=jdbc:mysql:///hotel?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC
username=root
password=123456
# 初始化连接数量
initialSize=5
# 最大连接数
maxActive=10
# 最大等待时间
maxWait=3000

注意:如果是保持数据库连接异常,则说明数据库和jar包版本匹配了,注意升级数据库jar包版本;

二、项目介绍

  1. 本项目主要是基于Swing框架搭建的java桌面应用程序 在项目中主要实现的功能有:

1.开始界面

  • 开始界面为动态代码雨的欢迎效果
    在这里插入图片描述

2.注册界面

  • 注册界面。实现了验证码的生成和验证,以及出生日期的日历控件化的选择,当用户注册成功后,用户名密码就会通过方法传到登录界面从而避免了用户第二次填账号密码的麻烦

    在这里插入图片描述

3.分角色登录

  • 登录主要分为管理员登录和用户登录,管理员登录后有

    • 客房管理功能:这个功能主要实现了对房间的增删改查,以及查看对应房间的评论等;涉及到了多对多的查询

在这里插入图片描述

4.用户管理

  • 用户管理功能:主要的增删改查操作,点击对应的用户右边小框框展示用户的头像

在这里插入图片描述

5.订单管理

  • 订单管理功能:在这里会展示用户的全部订单,通过多对多的查询展示用户的订房信息等;已经对用户的一些信息进行统计;主要用到了ifreechart 框架进行绘制表格

在这里插入图片描述

6.客房服务

  • 客房服务功能:就是给房间添加一些新的设备以及多张配图,方便用户浏览

在这里插入图片描述

7.历史记录

  • 历史记录:主要记录用户的订房退房记录,实现这个功能主要用到mysql的触发器,通过触发器,没删除一个订单,就将对于的订单保存到历史记录表里边;最后导出表格,而我导出的表格用csv文件逗号阵列,比较方便生成

在这里插入图片描述

8.管理员登录

  • 管理员管理,主要是设置权限的1位超级管理员0 为普通管理员

     ![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/d88c15305f3149caba1e5e256299300d.png)
    
    • 在退出前会有监听事件,会询问用户是否最小化托盘,如果最小化托盘则项目已经在运行中

    • 在登录前,由于想模仿QQ登录功能输入对应的账号显示不同的头像,最后添加了键盘监听功能和数据库查询,所以刚开始会有点卡

9.查看房间

  • 用户登录功能

    • 用户登录后,可以查看房间和其各种资料;

      在这里插入图片描述

10.点评房间

  • 用户也可以点评房间

    在这里插入图片描述

11.充值界面

  • 用户可以对客房进行预订,如果金额不足之前则需要用户进行充值

    • 而充值界面需要用户点击我的头像那里进入个人信息页面

    在这里插入图片描述

  • 用户个人信息还有评论记录都可以在个人信息这里修改删除等

三、文件夹目录说明

image    主要用于保存项目中用到的图片文件的
lib      主要用于保存用项目中用到jar包
sql      整个项目运行的数据和数据库表
src      全部源码com.ludashen.control  主要保存各种自定义的控件的com.ludashen.dao      数据库交互代码com.ludashen.frame    用户交互界面代码com.ludashen.hothl    模型对象类com.ludashen.panel    面板容器
resource  资源文件,图片等
druid.properties 数据库配置文件

四、 代码

1.runFrame

package com.ludashen.frame;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Random;public class RunFrame extends JDialog implements ActionListener {private int gi=0;private Random random = new Random();private Dimension screenSize;private JPanel graphicsPanel;private final static int gap = 20;//存放雨点顶部的位置信息(marginTop)private int[] posArr;//行数private int lines;//列数private int columns;public RunFrame() {initComponents();}private void initComponents() {setLayout(new BorderLayout());graphicsPanel = new GraphicsPanel();add(graphicsPanel, BorderLayout.CENTER);this.setUndecorated(true);setSize(500,400);setLocationRelativeTo(null);this.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);setVisible(true);screenSize = Toolkit.getDefaultToolkit().getScreenSize();lines = screenSize.height / gap;columns = screenSize.width / gap;posArr = new int[columns + 1];random = new Random();for (int i = 0; i < posArr.length; i++) {posArr[i] = random.nextInt(lines);}new Timer(120, this).start();}private int getChr() {return random.nextInt(10);}//定时器的@Overridepublic void actionPerformed(ActionEvent e) {graphicsPanel.repaint();}private class GraphicsPanel extends JPanel {@Overridepublic void paint(Graphics g) {Graphics2D g2d = (Graphics2D) g;g2d.setFont(getFont().deriveFont(Font.BOLD));g2d.setColor(Color.BLACK);g2d.fillRect(0, 0, screenSize.width, screenSize.height);//当前列int currentColumn = 0;for (int x = 0; x < screenSize.width; x += gap) {int endPos = posArr[currentColumn];g2d.setColor(Color.CYAN);g2d.drawString(String.valueOf(getChr()), x, endPos * gap);int cg = 0;for (int j = endPos - 15; j < endPos; j++) {//颜色渐变cg += 20;if (cg > 255) {cg = 255;}g2d.setColor(new Color(0, cg, 0));g2d.drawString(String.valueOf(getChr()), x, j * gap);}//每放完一帧,当前列上雨点的位置随机下移1~5行posArr[currentColumn] += random.nextInt(5);//当雨点位置超过屏幕高度时,重新产生一个随机位置if (posArr[currentColumn] * gap > getHeight()) {posArr[currentColumn] = random.nextInt(lines);}currentColumn++;}if(gi>6){g2d.setFont(new Font("italicc",3,25));g2d.setColor(Color.WHITE);g2d.drawString("欢迎使用酒店管理系统", getWidth()/2-100, getHeight()/2);}if(gi++>25){dispose();new LoginFrame().setVisible(true);}}}public static void main(String[] args) {new RunFrame();}
}

2.UserFrame

package com.ludashen.frame;import com.ludashen.control.*;import com.ludashen.dao.CommentDao;
import com.ludashen.dao.HouseDao;
import com.ludashen.dao.RoomInfoDao;
import com.ludashen.dao.UserDao;
import com.ludashen.hothl.Comment;
import com.ludashen.hothl.House;
import com.ludashen.hothl.RoomInfo;import javax.swing.*;import java.awt.*;import java.awt.event.*;import java.util.ArrayList;
import java.util.List;
import java.util.Map;public class UserFrame extends JFrame {private Map<String, Object> userInfo;//保存用户信息的private JMenuBar menuBar;private JLabel title,img;   //选中列表显示房子标题和图片private JTextPane tDetails;     //客房详情private JTextPane tComment;     //顾客点评private List<House> house;private int hid;    //用于记录房子id的private String detail;  //记录房子详情的private JList buddyList;    //列表信息private int choose; //获取当前选择的列private List<String> image=new ArrayList<>();//用于放当前房间的片private int index;//记录当前放到那张照片了public UserFrame(String uid){//构造函数根据登录id查找用户信息super("酒店管理系统");try {userInfo= UserDao.users(uid);}catch (Exception e){JOptionPane.showMessageDialog(null,"没有这个用户请重新登录");System.exit(0);}setTitle("酒店系统----"+userInfo.get("uName")+"在线");init();}private void init() {setResizable(false);//设置标题图标setIconImage(Toolkit.getDefaultToolkit().getImage(getClass().getResource("/resource/log.png")));title= new JLabel();img=new JLabel();tDetails=new JTextPane();tComment=new JTextPane();tComment.setEnabled(false);tDetails.setEnabled(false);tDetails.setBackground(new Color(0x134FAE));addWindowListener(new WindowAdapter() {@Overridepublic void windowClosing(WindowEvent e) {super.windowClosing(e);if (JOptionPane.showConfirmDialog(null, "是否最小化托盘") != 0) {System.exit(0);}}});tDetails.setContentType("text/html");tComment.setContentType("text/html");title.setFont(new Font("",1,30));topBar();Tool.SystemTrayInitial(this);this.add(mainPanel());this.setSize(900,750);this.setLocationRelativeTo(null);}private JPanel mainPanel(){JPanel p=new JPanel(null);JPanel panel = new JPanel();tDetails.setOpaque(false);RScrollPane details=new RScrollPane(tDetails,"/resource/bg1.jpg");panel.setLayout(new BorderLayout());JPanel p2=new JPanel(new BorderLayout());JTextField field=new JTextField(50);field.setSize(500,30);RButton send=new RButton("发送");p2.add(field,BorderLayout.WEST);p2.add(send,BorderLayout.EAST);panel.add(p2, BorderLayout.SOUTH);tComment.setOpaque(false);RScrollPane comment=new RScrollPane(tComment,"/resource/bg1.jpg");panel.add(comment, BorderLayout.CENTER);JTabbedPane jTabbedPane =Tool.jTabbedPane(235,450,p,640,215);jTabbedPane.setTabPlacement(1);Tool.Tabp(jTabbedPane,"酒店详情", "/resource/tabp/applicatio.png",details, "详情");Tool.Tabp(jTabbedPane,"点评列表", "/resource/tabp/Comment.png", panel, "列表");RButton ding=Tool.rButton(800,5,"预定",p,80);title.setBounds(240,5,260,45);img.setBounds(240,50,630,400);p.add(Tool.getFunButton(500, 10, "/resource/button/back1.png", "/resource/button/back2.png", e->{setBackImage();}));p.add(Tool.getFunButton(600, 10, "/resource/button/next1.png", "/resource/button/next2.png", e -> {setNetImage();}));RButton refresh=Tool.rButton(0,633,"刷新",p,235);send.addActionListener(e->{Comment comment1=new Comment((String) userInfo.get("uid"),String.valueOf(hid),field.getText());if(CommentDao.setCommentDao(comment1)) {tComment.setText(commentDao());JOptionPane.showMessageDialog(null,"评论成功!");field.setText("");}});ding.addActionListener(e ->{new YudingDialog(house.get(choose).getHid(),(String) userInfo.get("uid"),(Float) userInfo.get("money")).setVisible(true);});refresh.addActionListener(e -> {reRoom();});p.add(img);p.add(title);p.add(listRoom());p.add(refresh);return p;}private JScrollPane listRoom(){buddyList = new JList();buddyList.setOpaque(false);reRoom();if(house.size()!=0){img.setIcon(new ImageIcon((Image) new ImageIcon("image\\room\\"+house.get(0).gethImg()).getImage().getScaledInstance(630, 400,Image.SCALE_DEFAULT )));title.setText(house.get(0).gethName());image.add(house.get(0).gethImg());hid=house.get(0).getHid();detail= "<html><h2>详情:"+house.get(0).gethDetails()+"</h2>"+roomInfo()+"</html>";tDetails.setText(detail);choose=0;}else {tDetails.setText("<h1>没有空房间</h1>");}buddyList.addListSelectionListener(e -> {if(buddyList.getValueIsAdjusting())try {img.setIcon(new ImageIcon((Image) new ImageIcon("image\\room\\"+house.get(buddyList.getSelectedIndex()).gethImg()).getImage().getScaledInstance(630, 400,Image.SCALE_DEFAULT )));    //设置JLable的图片image.clear();index=0;image.add(house.get(buddyList.getSelectedIndex()).gethImg());hid=house.get(buddyList.getSelectedIndex()).getHid();detail= "<html><h2>详情:"+house.get(buddyList.getSelectedIndex()).gethDetails()+"</h2>"+roomInfo()+"</html>";title.setText(house.get(buddyList.getSelectedIndex()).gethName());tDetails.setText(detail);tComment.setText(commentDao());choose=buddyList.getSelectedIndex();for (RoomInfo imgs:RoomInfoDao.getRoomInfo(hid,3)){image.add(imgs.getFuntion());}}catch (Exception e1){buddyList.clearSelection();}});buddyList.setCellRenderer(new FriListCellRenderer());buddyList.setFont(new Font(Font.SERIF, Font.PLAIN, 18));buddyList.setPreferredSize(new Dimension(230, 72*house.size()));RScrollPane jp = new RScrollPane(buddyList,"");jp.setBounds(0,0,233,630);return jp;}private void setNetImage() {if(index==image.size()-1) {JOptionPane.showMessageDialog(null,"已经是最后一张了");return;}elseindex++;img.setIcon(new ImageIcon((Image) new ImageIcon("image\\room\\"+image.get(index)).getImage().getScaledInstance(630, 400,Image.SCALE_DEFAULT )));}private void setBackImage(){if(index==0) {JOptionPane.showMessageDialog(null,"已经是第一张了");return;}index--;img.setIcon(new ImageIcon((Image) new ImageIcon("image\\room\\"+image.get(index)).getImage().getScaledInstance(630, 400,Image.SCALE_DEFAULT )));}public void reRoom(){house= HouseDao.getHouser(2);HouseModel buddy = new HouseModel(house);buddyList.setModel(buddy);}private String roomInfo(){List<RoomInfo> roomInfo =RoomInfoDao.getRoomInfo(hid,1);StringBuffer str=new StringBuffer();for(RoomInfo info:roomInfo){str.append("<p>"+info.getName()+":");str.append(info.getFuntion()+"</p>");}return str.toString();}private String commentDao(){int a=0;List<Comment> comments= CommentDao.getRoomComment(String.valueOf(hid),1);StringBuffer str=new StringBuffer();str.append("<html>");for (Comment comment:comments){if(a%2==0) {str.append("<div style='background-color:#3333CC;'><span style='font-size: 20px'>");str.append(comment.getUid() + "</span><br>");str.append(comment.getComment() + "<br>" + comment.getDate());str.append("<br></div>");}else {str.append("<div  style='background-color:#3300FF;'><span style='font-size: 20px'>");str.append(comment.getUid() + "</span><br>");str.append(comment.getComment() + "<br>" + comment.getDate());str.append("<br></div>");}a++;}if (comments.size()==0)str.append("占时没有评论");str.append("</table></html>");return str.toString();}private void topBar() {menuBar = new JMenuBar();menuBar.setLayout(null);JButton head=new CircleButton(40,(String)userInfo.get("head"));head.setBounds(840, 0, 40, 40);head.addMouseListener(new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {super.mouseClicked(e);new UserInfoDialog(userInfo).setVisible(true);}});JMenu menu = new JMenu("酒店");menu.setBounds(0,0,80,30);JMenuItem zmenu = new JMenuItem("酒店简介");zmenu.addActionListener(e->{IntroduceDialog introduceDialog = new IntroduceDialog();introduceDialog.setVisible(true);new Thread(introduceDialog).start();});menu.add(zmenu);menuBar.add(head);menuBar.add(menu);menuBar.setPreferredSize(new Dimension(300, 40));setJMenuBar(menuBar);}
}

3.loginFrame

package com.ludashen.frame;import com.ludashen.control.*;
import com.ludashen.dao.AdminDao;
import com.ludashen.dao.ContFile;
import com.ludashen.dao.UserDao;
import jdk.nashorn.internal.scripts.JO;import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.net.URL;
import java.sql.SQLException;public class LoginFrame extends JFrame {private RPanel RP1;private RPanel RP2;private JPanel p;private JTextField userName;private JPasswordField password;private static Boolean isAdmin=false;private JLabel head;ContFile file=new ContFile();public LoginFrame(){super();init();}public static void setAdmin(Boolean b){isAdmin=b;}private void init(){setResizable(false);//设置图片URL re = getClass().getResource("/resource/log.png");ImageIcon ico =new ImageIcon(re);setIconImage(Toolkit.getDefaultToolkit().getImage(re));//设置标题图标this.setLayout(null);RP1=new RPanel("/resource/Lmain.png");RP2=new RPanel("/resource/login.png");RP1.setBounds(0,0,600,400);RP2.setBounds(0,400,600,100);RP2.setLayout(null);RP1.setLayout(null);Tool.jLabel(50,40,"账号:",RP2);Tool.jLabel(280,40,"密码:",RP2);userName= Tool.jTextField(100, 40, RP2,162);password=Tool.passwordField(330, 40, '*',RP2,159);head=Tool.jLabel(250,150,"",RP1,100,100);userName.addKeyListener(new KeyAdapter() {@Overridepublic void keyReleased(KeyEvent e) {super.keyReleased(e);head.setIcon(new ImageIcon((Image) new ImageIcon("image\\head\\" +UserDao.head(userName.getText())).getImage().getScaledInstance(100, 100,Image.SCALE_DEFAULT )));}});RButton LoginButton=Tool.rButton(500, 39,"登录",RP2,80);JLabel register=Tool.jLabel(530, 69,"快速注册",RP2);JLabel set=Tool.jLabel(480, 69, "设置",RP2);setChangColor(register, new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {super.mouseClicked(e);new Register().setVisible(true);dispose();}});setChangColor(set, new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {super.mouseClicked(e);new LoginSetDialog().setVisible(true);}});RP1.add(Tool.getFunButton(560, 5, "/resource/close2.png", "/resource/close1.png", e->{System.exit(0);}));RP1.add(Tool.getFunButton(520, 5, "/resource/min1.png", "/resource/min2.png", e -> {setExtendedState(JFrame.ICONIFIED);}));LoginButton.addActionListener(e -> {try {String pass = file.readFile("pass");String[] sp = pass.split("@");String name = userName.getText();String spass = new String(password.getPassword());if (!isAdmin) {if (UserDao.getUser(name, spass)) {if (sp[0].trim().equals("0")) {file.writeFile("pass", "0@" + name + "@" + spass);} else {file.writeFile("pass", "1");}new UserFrame(name).setVisible(true);dispose();} else {JOptionPane.showMessageDialog(null, "您现在正在登陆用户系统,而用户密码或名字错误");}} else {if (AdminDao.getAdminLogin(name, spass)) {if (sp[0].trim().equals("0")) {file.writeFile("pass", "0@" + name + "@" + spass);} else {file.writeFile("pass", "1");}new AdminFrame(name).setVisible(true);dispose();} else {JOptionPane.showMessageDialog(null, "您现在正在登陆管理系统,用户密码或名字错误");}}}catch (Exception e1){
//                new ContFile().writeFile("e.txt",e1.printStackTrace());JOptionPane.showMessageDialog(null,e1.getLocalizedMessage());}});pass();this.add(RP1);this.add(RP2);this.setUndecorated(true);//去掉标题栏this.setSize(600,500);this.setLocationRelativeTo(null);this.setDefaultCloseOperation(3);}private void pass(){String pass=file.readFile("pass");String[] sp=pass.split("@");if(sp[0].trim().equals("0")&&sp.length>1){userName.setText(sp[1]);password.setText(sp[2]);head.setIcon(new ImageIcon((Image) new ImageIcon("image\\head\\" +sp[1]).getImage().getScaledInstance(100, 100,Image.SCALE_DEFAULT )));}}private void setChangColor(JLabel jLabel,MouseListener l){jLabel.addMouseListener(l);jLabel.addMouseListener(new MouseAdapter() {@Overridepublic void mouseEntered(MouseEvent e) {super.mouseEntered(e);jLabel.setForeground(Color.WHITE);}@Overridepublic void mouseExited(MouseEvent e) {super.mouseExited(e);jLabel.setForeground(Color.ORANGE);}});}public void setUser(String name,String pass){userName.setText(name);password.setText(pass);}}

五、联系与交流

扣:969060742 运行视频 完整程序资源 sql 程序资源

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/212223.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

midwayjs从零开始创建项目,连接mikro-orm框架(必须有java的springboot基础)

前言&#xff1a; 我一直都是用java的springboot开发项目&#xff0c;然后进来新公司之后&#xff0c;公司的后端是用node.js&#xff0c;然后框架用的是 midwayjs &#xff0c;然后网上的资料比较少&#xff0c;在此特地记录一波 文档&#xff1a; 1.官方文档&#xff1a;介绍…

Spring Boot 3.0 : 集成flyway数据库版本控制工具

目录 Spring Boot 3.0 : 集成flyway数据库版本控制工具flyway是什么为什么使用flyway主要特性支持的数据库&#xff1a; flyway如何使用spring boot 集成实现引入依赖配置sql版本控制约定3种版本类型 运行SpringFlyway 8.2.1及以后版本不再支持MySQL&#xff1f; 个人主页: 【⭐…

常见web漏洞的流量分析

常见web漏洞的流量分析 文章目录 常见web漏洞的流量分析工具sql注入的流量分析XSS注入的流量分析文件上传漏洞流量分析文件包含漏洞流量分析文件读取漏洞流量分析ssrf流量分析shiro反序列化流量分析jwt流量分析暴力破解流量分析命令执行流量分析反弹shell 工具 攻击机受害机wi…

Unity DOTS中的baking(一) Baker简介

Unity DOTS中的baking&#xff08;一&#xff09; Baker简介 baking是DOTS ECS工作流的一环&#xff0c;大概的意思就是将原先Editor下的GameObject数据&#xff0c;全部转换为Entity数据的过程。baking是一个不可逆的过程&#xff0c;原先的GameObject在运行时不复存在&#x…

leetcode 股票DP系列 总结篇

121. 买卖股票的最佳时机 你只能选择 某一天 买入这只股票&#xff0c;并选择在 未来的某一个不同的日子 卖出该股票。 只能进行一次交易 很简单&#xff0c;只需边遍历边记录最小值即可。 class Solution { public:int maxProfit(vector<int>& prices) {int res …

【git】关于git二三事

文章目录 前言一、创建版本库1.通过命令 git init 把这个目录变成git可以管理的仓库2.将修改的内容添加到版本库2.1 git add .2.2 git commit -m "Xxxx"2.3 git status 2.4 git diff readme.txt3.版本回退3.1 git log3.2 git reset --hard HEAD^ 二、理解工作区与暂存…

操作系统内部机制学习

切换线程时需要保存什么 函数需要保存吗&#xff1f;函数在Flash上&#xff0c;不会被破坏&#xff0c;无需保存。函数执行到了哪里&#xff1f;需要保存吗&#xff1f;需要保存。全局变量需要保存吗&#xff1f;全局变量在内存上&#xff0c;无需保存。局部变量需要保存吗&am…

Leetcode—337.打家劫舍III【中等】

2023每日刷题&#xff08;五十二&#xff09; Leetcode—337.打家劫舍III 算法思想 实现代码 /*** Definition for a binary tree node.* struct TreeNode {* int val;* TreeNode *left;* TreeNode *right;* TreeNode() : val(0), left(nullptr), right(null…

I.MX6ULL_Linux_驱动篇(46)linux LCD驱动

LCD 是很常用的一个外设&#xff0c;在Linux 下LCD 的使用更加广泛&#xff0c;在搭配 QT 这样的 GUI 库下可以制作出非常精美的 UI 界面。本章我们就来学习一下如何在 Linux 下驱动 LCD 屏幕。 Linux 下 LCD 驱动简析 Framebuffer 设备 先来回顾一下裸机的时候 LCD 驱动是怎…

前端入门:HTML初级指南,网页的简单实现!

代码部分&#xff1a; <!DOCTYPE html> <!-- 上方为DOCTYPE声明&#xff0c;指定文档类型为HTML --> <html lang"en"> <!-- html标签为整个页面的根元素 --> <head> <!-- title标签用于定义文档标题 --> <title>初始HT…

单点登录方案调研与实现

作用 在一个系统登录后&#xff0c;其他系统也能共享该登录状态&#xff0c;无需重新登录。 演进 cookie → session → token →单点登录 Cookie 可以实现浏览器和服务器状态的记录&#xff0c;但Cookie会出现存储体积过大和可以在前后端修改的问题 Session 为了解决Co…

UVM建造测试用例

&#xff08;1&#xff09;加入base_test 在一个实际应用的UVM验证平台中&#xff0c;my_env并不是树根&#xff0c;通常来说&#xff0c;树根是一个基于uvm_test派生的类。真正的测试用例都是基于base_test派生的一个类。 class base_test extends uvm_test;my_env e…

14-2(C++11)类型推导、类型计算

14-2&#xff08;C11&#xff09;类型推导、类型计算 类型推导auto关键字auto类型推断本质auto与引用 联用auto关键字的使用限制 类型计算类型计算分类与类型推导相比四种类型计算的规则返回值后置 类型推导 auto关键字 C98中&#xff0c;auto表示栈变量&#xff0c;通常省略…

Leetcode刷题笔记题解(C++):25. K 个一组翻转链表

思路&#xff1a;利用栈的特性&#xff0c;K个节点压入栈中依次弹出组成新的链表&#xff0c;不够K个节点则保持不变 /*** struct ListNode {* int val;* struct ListNode *next;* ListNode(int x) : val(x), next(nullptr) {}* };*/ #include <stack> class Solution { …

在国内,现在月薪1万是什么水平?

看到网友发帖问&#xff1a;现在月薪1W是什么水平&#xff1f; 在现如今的情况下&#xff0c;似乎月薪过万这个标准已经成为衡量个人能力的一个标准了&#xff0c;尤其是现在互联网横行的时代&#xff0c;好像年入百万&#xff0c;年入千万就应该是属于大众的平均水平。 我不是…

kafka入门(四):消费者

消费者 (Consumer ) 消费者 订阅 Kafka 中的主题 (Topic) &#xff0c;并 拉取消息。 消费者群组&#xff08; Consumer Group&#xff09; 每一个消费者都有一个对应的 消费者群组。 一个群组里的消费者订阅的是同一个主题&#xff0c;每个消费者接收主题的一部分分区的消息…

大师学SwiftUI第18章Part2 - 存储图片和自定义相机

存储图片 在前面的示例中&#xff0c;我们在屏幕上展示了图片&#xff0c;但也可以将其存储到文件或数据库中。另外有时使用相机将照片存储到设备的相册薄里会很有用&#xff0c;这样可供其它应用访问。UIKit框架提供了如下两个保存图片和视频的函数。 UIImageWriteToSavedPh…

JAVA后端自学技能实操合集

JAVA后端自学技能实操 内容将会持续更新中,有需要添加什么内容可以再评论区留言,大家一起学习FastDFS使用docker安装FastDFS(linux)集成到springboot项目中 内容将会持续更新中,有需要添加什么内容可以再评论区留言,大家一起学习 FastDFS 组名&#xff1a;文件上传后所在的 st…

leetcode 100.相同的树

涉及到递归&#xff0c;最好多画图理解&#xff0c;希望对你们有帮助 100.相同的树 题目 给你两棵二叉树的根节点 p 和 q &#xff0c;编写一个函数来检验这两棵树是否相同。 如果两个树在结构上相同&#xff0c;并且节点具有相同的值&#xff0c;则认为它们是相同的。 题目链接…

GPIO的使用--滴答定时器--pir人体红外传感器

目录 一、滴答定时器的使用与原理 1、定义 2、原理 &#xff08;1&#xff09;向上计数​编辑 &#xff08;2&#xff09;向下计数 &#xff08;3&#xff09; 代码流程 a、配置滴答时钟唤醒频率 b、滴答时钟中断函数 &#xff08;4&#xff09;结果 3、优化-->寄存…