摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace IocApplication{ public stati 阅读全文
posted @ 2024-07-11 15:44 黄立明02 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 如果要调用C++动态库,在window上C++动态为.dll后缀,在LinuxC++动态库为.so后缀. 那么在调用的时候可以不指定调用的后缀名 形式1:[DllImport("Detection.AlgorithmLib")] 形式2-绝对路径:[DllImport("Algorithm/Dete 阅读全文
posted @ 2024-05-11 08:49 黄立明02 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 乌班图不能单独安装运行时,不知道为什么,需要安装sdk才可以使用 sudo apt-get updatesudo apt-get install -y apt-transport-https sudo apt-get install -y dotnet-sdk-8.0 阅读全文
posted @ 2024-05-09 16:52 黄立明02 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 在使用 GCC 编译器编译多个源文件时,你需要将所有需要编译的源文件列出,并在命令行中将它们一起传递给 GCC。GCC 会将这些源文件编译成目标文件(.o 文件),然后链接成最终的可执行文件或动态库。 下面是一个示例命令行: bash Copy code g++ -c file1.cpp file2 阅读全文
posted @ 2024-05-09 13:51 黄立明02 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 很可能是Linux系统没有安装libVLC 可以执行下面的命令进行安装 sudo apt install libvlc-dev 可以还需要执行命令 sudo apt install vlc 阅读全文
posted @ 2024-04-30 13:16 黄立明02 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 我本地的QT版本和现场的QT版本不一致,导致双击打不开(不知道为什么打不开) 重新再现场编译程序即可。 阅读全文
posted @ 2024-01-31 09:03 黄立明02 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 报错如下 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '??,Limit_l 阅读全文
posted @ 2024-01-26 17:34 黄立明02 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 我本地在vs上可以编译通过,也能执行成功 但是部署之后,就出现标题所示的错误 网上说查找对应版本的SQLite.Interop.dll动态库 x86活x64 但是网上下载之后 吊用没有 解决: 根据自己的程序的版本(x86\x64)使用everything检索本地的SQLite.Interop.dl 阅读全文
posted @ 2024-01-25 09:20 黄立明02 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 升级数据库就能解决 阅读全文
posted @ 2023-12-29 08:40 黄立明02 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 先上图 我安装完程序之后,返现上面红框中是灰色的,并且前面还带一个黄色感叹号 并且下面C++的地方还是空的,应该是系统没有c++编译器 为系统安装g++编译器 sudo apt-get install g++ 不能编译需要安装套件,用命令行安装 sudo apt-get install build- 阅读全文
posted @ 2023-12-20 15:36 黄立明02 阅读(277) 评论(0) 推荐(0) 编辑