大约有 4,600 项符合查询结果(耗时:0.0184秒) [XML]

https://www.tsingfun.com/down/soft/WinImage.html 

WinImage 映像读写工具 - 软件下载 - 清泛网移动版 - 专注C++内核技术

WinImage 映像读写工具WinImageWinImage 映像WinImage是一款功能强大的磁盘应用工具,你可以用它来创建一张软盘映像,也可以从映像文件中提取文件,把映像文件恢复到一张空白的软盘中。...WinImage是一款功能强大的磁盘应用工具,你...
https://www.tsingfun.com/down/soft/WinHex.html 

WinHex 二进制查看修改工具 - 软件下载 - 清泛网移动版 - 专注C++内核技术

WinHex 二进制查看修改工具WinHex机制WinHex是一个专门用来对付各种日常紧急情况的小工具。它可以用来检查和修复各种文件、恢复删除文件、硬盘损坏造成的数据丢失等。同时它还可以让你看到其他程序隐藏起来的文件和数据。Wi...
https://www.tsingfun.com/down/... 

CCleaner 功能强大的系统清理软件 - 软件下载 - 清泛网移动版 - 专注C++内核技术

CCleaner 功能强大的系统清理软件CCleaner_pro_greenCCleaner 系统清理CCleaner是一款来自国外的超级强大的系统优化工具,能够清除所有的垃圾文件,全面保护系统隐私,CCleaner 清除垃圾文件的能力远超国内的主...CCleaner是一款来自国外...
https://www.tsingfun.com/it/cp... 

【解决】Missing FindPython3.cmake - C/C++ - 清泛网移动版 - 专注C++内核技术

【解决】Missing FindPython3.cmakeMissing-FindPython3-cmake编译llvm时,报错:CMake Error at CMakeLists txt:729 (find_package): By not providing "FindPython3 cmake" in CMAKE_MODULE_PATH this project has asked 编译llvm时,报错: CMake Error at CMakeLists.txt:729 (find_package):...
https://www.tsingfun.com/it/cp... 

【解决】This is allowed only when policy CMP0079 is set to NEW. - C/C+...

【解决】This is allowed only when policy CMP0079 is set to NEW.This-is-allowed-only-when-policy-CMP0079-is-set-to-NEWcmake最低版本设置为3 13以上,可解决。cmake_minimum_required(VERSION 3 13) can fix the first problem 参考:https: gitlab kitware com cmake cmake - issues 19693cma...
https://www.tsingfun.com/it/ai... 

【视频教程】App Inventor 2 基础组件使用 - App Inventor 2 中文网 - 清泛...

【视频教程】App Inventor 2 基础组件使用app_inventor_2_basic_component_usage<iframe allowfullscreen= \"true \" border= \"0 \" frameborder= \"no \" framespacing= \"0 \" scrolling= \"no \" src= \" player bilibili com player html?aid=652531626&bvid=BV1HY4y127rN&cid=1025709578&page=1&high_qu...
https://www.tsingfun.com/it/cp... 

浮点数在内存中的表示 - C/C++ - 清泛网 - 专注C++内核技术

浮点数在内存中的表示Float_Memory_Representation一般我们常见的字符型、整型在内存中采用标准的二进制存储,但是程序员往往容易忽略浮点数在内存中的储存方式,从而会导致一些误用,最常见的是浮点数等于零的判断。只有理解...
https://www.tsingfun.com/it/cp... 

SetUnhandledExceptionFilter and the C/C++ Runtime Library - C/C++ - 清泛网 - 专注C++内核技术

SetUnhandledExceptionFilter and the C/C++ Runtime LibrarySetUnhandledExceptionFilter-and-the-C-C-Runtime-LiThis article presents a fix for SetUnhandledExceptionFilter to work with the CRT.Download source code - 30.9 KBInt...This article presents a fix for SetUnhandledExceptionFilter to work with the...
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe)MFC-Telnet-Applicationmfc程序telnet ip:端口,代码原生实现、不调用telnet.exe。程序源码工程升级后,可能出现编译不过的情况,请将stdafx.h中0x0410全部改为0x0501即可。The artic...
https://www.tsingfun.com/it/cp... 

char类型移动跨平台踩过的坑 - C/C++ - 清泛网 - 专注C++内核技术

char类型移动跨平台踩过的坑CFLAG-fsigned-charchar强转int时,发现在x86平台下是按照有符号处理的,但是在ARM32下被当成了无符号导致问题,ARM64正常有符号。经调查,在PC上,char类型默认为signed-char,但是在一些嵌入式设备 char强转...