自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (3)
  • 收藏
  • 关注

原创 C++友元

C++友元

2024-08-10 12:58:20 270

原创 FPGA按键消抖

FPGA按键消抖

2024-08-05 22:14:09 193

原创 FreeRTOS链表

FreeRTOS链表实现

2024-08-04 19:00:31 249

原创 nginx配置

NGINX安装

2024-04-13 15:26:24 245 1

原创 nginx代理本地图片

ninx代理本地图片

2023-07-03 10:19:26 1104

原创 c++设计模式之建造者模式

#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <string.h>using namespace std;class House {public: void setDoor(string m_door) { this->m_door = m_door; } string getDoor() { return m_door; } void setWall(string m_

2022-04-21 08:39:52 232

原创 c++设计模式之抽象工厂模式

#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <string.h>using namespace std;class Fruit {public: virtual void getFruit() = 0;};class AbFactory {public: virtual Fruit* CreateAppleProduct() = 0; virtual Fruit* CreateBan

2022-04-20 11:09:04 438

原创 C++设计模式之工厂模式

#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include <string.h>using namespace std;class Fruit{public: virtual void getFruit() = 0;};class Apple : public Fruit {public: void getFruit() { cout << "我是苹果" << endl;

2022-04-20 08:28:43 820

原创 C++设计模式之单例模式

#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdlib.h>#include <windows.h>using namespace std;#if 1/** * 懒汉式 */class Singelton {public: static Singelton * getInstance() { if (m_sig == NULL) { m_sig = n

2022-04-19 09:33:06 594

原创 c语言求一个数组最大值与最小值

int getMaxMin(int *arr,int len,int flag){ int max = arr[0]; int min = arr[0]; if (flag == 1) { for (int i = 0; i < len; ++i) { if (arr[i] > max) { max = arr[i]; }

2021-10-14 08:11:50 3981 2

FPGA笔记.pdf

FPGA入门笔记,根据野火FPGA征途系列开发板所带的DEMO,根据自己学习过程整理的核心资料,供大家学习

2021-02-05

STC89C51使用手册.zip

STC89C51使用手册包含stc芯片上的所有资源,包括寄存器,定时器,中断,对于初学者非常友好,里面包含了大量c语言和汇编等例程。

2020-07-15

STC-ISP下载烧写软件v6.85H.zip

stc51下载烧录软件是51单片机最权威的烧录软件,操作简单,界面清晰,对于新手来说非常的合适,希望对大家的学习有所帮助。

2020-04-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除