摘要: 一、环境配置: 1. npm create vue@latest #安装vue 3.5.13 2. cd projectDir 3. npm install # 安装vue 4. npm run dev # 运行:其实运行的是src/package.json 中的vite命令,和在控制台直接输入vi 阅读全文
posted @ 2025-01-02 10:42 龍飛鳯舞 阅读(10) 评论(0) 推荐(0) 编辑
摘要: C++学习 一、基础语法: 1. 整型: short: 2字节,1字节占8位,可表示的数据范围是-2^15~2^15-1, 第一位表示正负,所以数据范围只能是15次方 int: 4字节 long: 4字节 long long: 8字节 2. sizeof 统计数据类型(变量)所占内存的字节大小 3. 阅读全文
posted @ 2024-12-20 11:10 龍飛鳯舞 阅读(16) 评论(0) 推荐(0) 编辑
摘要: -- 一、基本函数 # 求绝对值 SELECT ABS(id) FROM school; SELECT ABS(-5); #5 # 开根号 SELECT SQRT(25),SQRT(-5),SQRT(0),SQRT(8); #5,null,0,2.8284271247461903 # 求余数 SEL 阅读全文
posted @ 2024-12-04 17:10 龍飛鳯舞 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. 镜像(image) 2. 容器(container) 3. 仓库(repository) 4. centos7安装docker yum -y install gcc yum -y install gcc-c++ yum install -y yum-utils yum-config-manag 阅读全文
posted @ 2024-11-06 08:05 龍飛鳯舞 阅读(10) 评论(0) 推荐(0) 编辑
摘要: // // Created by Administrator on 2024/10/29. // #ifndef LINK_H #define LINK_H /** * 链表的结构体 */ typedef struct Link { int element; struct Link *next; } 阅读全文
posted @ 2024-10-30 15:25 龍飛鳯舞 阅读(3) 评论(0) 推荐(0) 编辑
摘要: // // Created by Administrator on 2024/10/29. // #ifndef LINK_H #define LINK_H /** * 链表的结构体 */ typedef struct Link { int element; struct Link *next; } 阅读全文
posted @ 2024-10-30 10:25 龍飛鳯舞 阅读(32) 评论(0) 推荐(0) 编辑
摘要: // // Created by Administrator on 2024/10/29. // #ifndef LINK_H #define LINK_H /** * 链表的结构体 */ typedef struct Link { int element; struct Link *next; } 阅读全文
posted @ 2024-10-30 10:23 龍飛鳯舞 阅读(5) 评论(0) 推荐(0) 编辑
摘要: // // Created by Administrator on 2024/10/25. // 顺序表结构 // #ifndef ORDER_TABLE_H #define ORDER_TABLE_H /*声明顺序表的长度*/ #define Size 5 /** * 声明顺序表结构体 */ ty 阅读全文
posted @ 2024-10-30 10:21 龍飛鳯舞 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 注意:发送消息通知要开启设置中的消息通知 import notify from '@ohos.notificationManager' import image from '@ohos.multimedia.image' import { BusinessError } from '@kit.Bas 阅读全文
posted @ 2024-10-11 15:45 龍飛鳯舞 阅读(30) 评论(1) 推荐(0) 编辑
摘要: 1. 数据查询model: entry/src/main/model/TaskModel.ets import relationalStore from '@ohos.data.relationalStore'; import { common } from '@kit.AbilityKit'; i 阅读全文
posted @ 2024-10-11 13:22 龍飛鳯舞 阅读(89) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示