自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

道亦无名

王阳明曰: 立志 勤学 改过 择善 我曰: flag practice debug release

  • 博客(22)
  • 资源 (135)
  • 问答 (30)
  • 收藏
  • 关注

原创 ISIS 如何调整仿真步长

如下:System->set

2018-10-28 16:16:48 12023 2

原创 java获取文件ftp的文件列表

干货代码如下:用JAVA获取FTP文件列表public class FtpClientUtil { FtpClient ftpClient; private String server; private int port; private String userName; private String userPassword; public FtpClientUtil(St...

2018-10-24 15:53:14 10418 4

原创 C#中使用匿名类和初始化器

代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class Program { static void M...

2018-10-23 20:40:51 1955

原创 C#的简单语法和初始化器

代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class Program { static void M...

2018-10-23 20:16:40 1769

原创 C#中的LINQ使用

1. 语言集成查询语言集成查询 (LINQ) 是一系列直接将查询功能集成到 C# 语言的技术统称。 数据查询历来都表示为简单的字符串,没有编译时类型检查或 IntelliSense 支持。 此外,对于每种数据源,还需要学习不同的查询语言:SQL 数据库、XML 文档、各种 Web 服务等。 借助 LINQ,查询成为了最高级的语言构造,就像类、方法和事件一样。对于编写查询的开发者来说,LINQ 最...

2018-10-23 19:30:22 2396

原创 C#处理写xml文件

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-23 17:12:56 1983

原创 xml未经处理的异常

vs进行c#开发的时候出现检查半天发是xml文件的内容格式有问题 。

2018-10-23 17:06:34 2017

原创 如何组装自己的摄像机

市场上有很多摄像头,如何自己组装摄像头?网络,视频,控制,安全。网口,视频编解码器,MCU,加密。有没有一些好的解决办法可以讨论一下。

2018-10-20 12:20:16 5238

原创 常用的web服务器的特点

Apache[优点]比较成熟、稳定、功能强大、配置丰富、能想到的模块都有[缺点] 不适合静态文件多的站点、内存CPU占用很大、阻塞型请求处理方式Nginx[优点]内存CPU开销小、支持更高的并发数、FastCGI模式效率突出、配置简单[缺点] rewrite支持不是很好、动态页面处理效率不如apache、可使用的模块较少Lighttpd[优点]系统资源...

2018-10-19 16:05:52 3814

原创 如何解决Tomcat v9.0 Server at localhost are already in use

这种在页面开发过程中经常遇到这种情况:直接进行services.msc找到Apache 这种奇葩重新运行eclipse的工程就好了在网上看了那么多,发现很多都没有解决我的问题,这次我自己来解决就好了。特别留下记录。...

2018-10-19 14:47:39 6185

原创 C#使用数据库表操作

直接上代码:数据库配置如下:using System;using System.Collections.Generic;using System.Text;using System.Data.SqlClient;namespace AddressList{ class DBHelper { private static string s = "dat...

2018-10-18 16:34:30 2947

原创 C# menuItem使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-15 11:30:51 4824

原创 C# timer添加事件处理

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-14 18:37:42 3903

原创 C# linklabel使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-14 17:44:55 3103

原创 C# combobox使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-13 12:07:04 10632

原创 C#下面的listbox使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-12 21:02:57 2588

原创 C# 改进checkbox使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-12 20:46:26 2335

原创 C#checkbox使用

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-12 20:31:01 9030

原创 C#的groupbox和字体修改

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-12 20:10:26 3666

原创 C#计算

代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using Sy...

2018-10-12 19:57:32 2229

原创 C#窗体程序

C#窗体程序using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using S...

2018-10-12 19:48:01 2357

原创 windows下链接mysql数据库

不啰嗦代码 如下:// 1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include"winsock.h"#include "mysql.h"#pragma comment(lib,"libmySQL.lib")struct conn_info{ char *host; char *use

2018-10-04 11:05:14 1051

mysql-examples-5.7.39.msi

mysql-examples-5.7.39

2023-09-12

mysql-connector-python-8.0.30-windows-x86-64bit.msi

mysql-connector-python-8.0.30-windows-x86-64bit.msi

2023-09-12

mysql-connector-python-8.0.30-windows-x86-32bit.msi

mysql-connector-python-8.0.30-windows-x86-32bit.msi

2023-09-12

mysql-connector-net-8.0.30.msi

mysql-connector-net-8.0.30.msi

2023-09-12

mysql-connector-java-gpl-8.0.30.msi

mysql-connector-java-gpl-8.0.30.msi

2023-09-12

mysql-connector-c++-8.0.30-win32.msi

mysql-connector-c++-8.0.30-win32.msi

2023-09-12

mysql-connector-c++-8.0.30-win32.msi

mysql-connector-c++-8.0.30-win32.msi

2023-09-12

mysql-5.7.39-winx64.msi

mysql-5.7.39-winx64.msi 64位

2023-09-12

mysql-5.7.39-win32.msi

mysql-5.7.39-win32.msimysql-5.7.39-win32.msi mysql-5.7.39-win32.msi

2023-09-12

8558A中文资料fluke万用表

8558A中文资料8558A中文资料8558A中文资料

2023-07-18

输配电线路基础知识.ppt

输配电线路基础知识.ppt输配电线路基础知识.ppt输配电线路基础知识.ppt

2023-06-07

代码审查规范代码审查规范代码审查规范

代码审查规范代码审查规范代码审查规范代码审查规范代码审查规范代码审查规范代码审查规范代码审查规范

2023-04-27

chatGPT原理和相关应用场景

chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景chatGPT原理和相关应用场景

2023-04-18

Excel.vi labview

labview进行excel labview进行excel写入

2023-02-17

人工智能还能做什么.doc

人工智能还能做什么.doc人工智能还能做什么.doc人工智能还能做什么.doc人工智能还能做什么.doc人工智能还能做什么.doc人工智能还能做什么.doc人工智能还能做什么.doc

2023-02-07

RK3588的硬件编解码库使用

RK3588的硬件编解码库使用RK3588的硬件编解码库使用RK3588的硬件编解码库使用RK3588的硬件编解码库使用RK3588的硬件编解码库使用

2022-11-19

Open-Video-Downloader-Setup-2.4.0

音视频编解码Open-Video-Downloader-Setup-2.4.0Open-Video-Downloader-Setup-2.4.0Open-Video-Downloader-Setup-2.4.0Open-Video-Downloader-Setup-2.4.0

2022-11-19

变电站巡检机器人系统交互接口技术规范

变电站巡检机器人系统交互接口技术规范2022年的最新版

2022-11-14

QT做一个按钮Qpushbutton 倒计时功能的小小程序

QT做一个按钮Qpushbutton 倒计时功能的小小程序 https://jackzhang.blog.csdn.net/article/details/125747200 的源码。欢迎交流啊

2022-07-13

tek202203-USB-10.rar

tek202203-USB-10.rar

2022-05-12

qt-vsaddin-msvc2022-2.8.1.vsix

qt-vsaddin-msvc2022-2.8.1.vsix

2022-03-17

courgette.tar

courgette.tar

2022-03-07

智能变电站智能故障录波装置通用技术规范

智能变电站智能故障录波装置通用技术规范

2022-01-25

几种VR的数据传输方案.pdf

几种VR的数据传输方案.pdf

2021-09-09

嵌入式试题集(含答案).doc

计算机三级 嵌入式 笔试题

2021-08-23

MTK驱动架构详解.ppt

MTK驱动架构详解.ppt

2021-08-23

clonezilla-再生龙-zesty-i386.iso

clonezilla-再生龙-zesty-i386.iso

2021-08-17

wenbinhuang-QtSOAP-master.zip

wenbinhuang-QtSOAP-master.zip

2021-08-13

HC-SR501 High Sensitivity Human Infrared SensorPCB.doc

HC-SR501 High Sensitivity Human Infrared Sensor Module Pyroelectric PCB

2021-08-12

热释电红外感应.docx

热释电红外感应.docx

2021-08-12

SetupSTMCUFinder-4.0.0-Win.exe

SetupSTMCUFinder-4.0.0-Win.exe

2021-08-12

算法分析的原理.pptx

算法分析的原理 算法分析的原理 算法分析的原理 算法分析的原理 算法分析的原理算法分析的原理

2024-04-21

C++11特性.pptx

C11简介与背景,语法改进与增强功能, 智能指针与内存管理优化,容器、算法和迭代器改进,模板编程提升,C11提供了原子操作库,支持对基本数据类型的原子操作。C11并未引入全自动的垃圾回收机制,但智能指针提供了一种类似垃圾回收的资源管理方式,通过自动释放不再使用的资源来减少内存泄露和悬挂指针问题。C11的智能指针支持自定义删除器,允许开发者在智能指针释放资源时执行特定的操作,如释放动态分配的内存、关闭文件句柄等。unordered_map`、`std:unordered_set`等:基于哈希表的无序容器,提供了快速的查找、插入和删除操作。

2024-03-22

伺服电机原理与控制技术

伺服电机是指在伺服系统中控制机械元件运转的发动机,是一种补助马达间接变速装置。其主要功能是将电压信号转化为转矩和转速以驱动控制对象。

2024-03-19

无人机的基本构成.pptx

无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx无人机的基本构成.pptx

2024-03-16

低空经济低空经济.pptx

低空经济低空经济低空经济低空经济低空经济低空经济低空经济低空经济

2024-03-15

步进电机基础(5.9)-步进电机的驱动与控制-三相步进电机的驱动电路.pdf

步进电机基础(5.9)-步进电机的驱动与控制-三相步进电机的驱动电路.pdf步进电机基础(5.9)-步进电机的驱动与控制-三相步进电机的驱动电路.pdf

2023-10-06

mysql-documents-5.7.39.msi

mysql-documents-5.7.39

2023-09-12

mysql-shell-8.0.30-windows-x86-64bit.msi

mysql-shell-8.0.30-windows-x86-64bit

2023-09-12

mysql-router-8.0.30-winx64.msi

mysql-router-8.0.30-winx64 mysql-router-8.0.30-winx64.msi

2023-09-12

ubuntu20.04安装 Kscope出现问题如下

2021-09-26

qt中的对话框QDialog的退出按钮X为啥要点击2次才能够退出?

2019-11-21

python是脚本语言,该如何进行学习?

2016-06-13

一个io端口如何控控制电机的三种状态(正向转动,停止,反向转动)

2015-05-11

ADC0804和ADC0808有什么区别

2015-01-27

如何读取位图图像的数据?

2015-01-16

BMP位图的操作,怎么判断是否是个256色的位图

2015-01-15

如何去除十六进制的符号位?

2015-01-14

BCD编码的进制数为整数,如何判断这个数是整数还是负数?

2015-01-14

编写一个函数,转换十进制数为字符串,需要处理负数,为什么会有错误呢

2015-01-14

输出正弦波,根据函数参数变化振幅、周期和字符

2015-01-13

service mysqld retart 不能启动时是什么情况?

2015-01-11

Mysql数据库workbench进不去

2015-01-11

32位系统上最大支持的传输是多大?

2015-01-09

RHEL6(红帽)如何无线上网

2015-01-07

在MISRA C中有提示避免索引非数组的对象该怎么解决?

2015-01-05

创建线程使用fork()

2015-01-04

用C语言如何获取当前目录下面的文件名字?

2014-12-29

FTP文件传输如何用C语言实现

2014-12-26

自动更新系统的设计和实现

2014-12-26

用C语言实现网络聊天的程序怎么写?

2014-12-22

C语言线程控制的程序设计

2014-12-18

如何实现顺序表的各个功能?用C语言实现

2014-12-11

如何在工程目录下读取.c的源文件

2014-12-08

使用C语言1. 读取一个.C文件,删除该文件中所有的注释语句

2014-12-05

在产生布尔类型的表达式中对‘c’赋值如何解决

2014-12-03

C语言中的指针和数组的初始化

2014-12-02

f32a=f64a;为什么编译不能通过

2014-11-29

如何写一个随机点名系统

2014-11-23

(get = fgetc(fp))!=EOF

2014-11-23

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

TA关注的人

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