大约有 47,000 项符合查询结果(耗时:0.0288秒) [XML]

https://www.tsingfun.com/it/cpp/708.html 

汇编语言超浓缩教程(汇编入门必备) - C/C++ - 清泛网 - 专注C/C++及内核技术

...示原结果,故找一赝品将就着。    Program terminated normally   我们可以用U命令将十六进制机器码反汇编(Unassemble)成汇编指令。你将发现每一行右边汇编指令就是被汇编成相应机器码,而8086实际上就是以机器码来...
https://www.tsingfun.com/it/tech/1411.html 

新浪是如何分析处理32亿条实时日志? - 更多技术 - 清泛网 - 专注C/C++及内核技术

新浪是如何分析处理32亿条实时日志?【编者话】我从2014年初入职新浪后就开始接触实时日志分析相关技术,主要是ELK(Elasticsearch、Logstash、Kibana),当时是学习+ELK优...【编者话】我从2014年初入职新浪后就开始接触实...
https://www.tsingfun.com/it/cpp/2214.html 

服务器保持大量TIME_WAIT和CLOSE_WAIT解决方法 - C/C++ - 清泛网 - 专注C/C++及内核技术

服务器保持大量TIME_WAIT和CLOSE_WAIT解决方法昨天解决了一个HttpClient调用错误导致服务器异常,具体过程如下:http: blog.csdn.net shootyou article details 6615051里头分析过...昨天解决了一个HttpClient调用错误导致服务器异常,具体...
https://www.tsingfun.com/it/cpp/1583.html 

mfc 按钮变成了非xp风格、界面变成windows经典样式原因总结 - C/C++ - 清...

mfc 按钮变成了非xp风格、界面变成windows经典样式原因总结首先看一下xp风格与非xp风格:  非xp风格          xp风格stdafx.h中添加:#ifdef _UNICODE#if defined _M_IX86#pragma co...首先看一下xp风格与非xp风格:   非xp风...
https://www.tsingfun.com/it/cpp/1443.html 

c++ Timer使用总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

...结了窗口应用程序、控制台程序、多线程中分别使用Timer方法,均提供实例参考。窗口应用程序使用Timer: #define TIMER_ID 1000 //定时器ID,可任意。触发后回调函数中用于区别不同定时器以执行不同任务 SetTimer(TIMER_ID, 1000...
https://www.tsingfun.com/it/cpp/2108.html 

C/C++中段错误(Segmentation fault) - C/C++ - 清泛网 - 专注C/C++及内核技术

... occurs when a program attempts to access a memory location that it is not allowed to access, or attempts to access a memory location in a way that is not allowed (e.g., attempts to write to a read-only location, or to overwrite part of the operating system). Systems based on processors like the Mot...
https://www.tsingfun.com/it/cpp/1285.html 

STL:accumulate与自定义数据类型 - C/C++ - 清泛网 - 专注C/C++及内核技术

STL:accumulate与自定义数据类型C++ STL中有一个通用数值类型计算函数— accumulate(),可以用来直接计算数组或者容器中C++内置数据类型,例如:#include <numeric>int...C++ STL中有一个通用数值类型计算函数— accumulate(),可以用来直接...
https://www.tsingfun.com/it/cpp/1254.html 

一分钟明白 VS manifest 原理 - C/C++ - 清泛网 - 专注C/C++及内核技术

一分钟明白 VS manifest 原理什么是vs 程序manifest文件manifest 是VS程序用来标明所依赖side-by-side组建,如ATL, CRT等清单。为什么要有manifest文件一台pc上...什么是vs 程序manifest文件 manifest 是VS程序用来标明所依赖side-by-side组建...
https://bbs.tsingfun.com/thread-1748-1-1.html 

下拉刷新拓展 - SwipeRefresh - App Inventor 2 拓展 - 清泛IT社区,为创新赋能!

...两个注册方法中,只选择一个。一旦注册成功,之后调用注册方法都会被无视。Material Design所推荐使用颜色 调用SwipeRefresh1 ▾._Color_holo_blue_bright 调用SwipeRefresh1 ▾._Color_holo_blue_dark 调用SwipeRefresh1 ▾._Color_holo_blue_light ...
https://www.tsingfun.com/it/cpp/665.html 

线程访问窗口资源问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

线程访问窗口资源问题在开个线程时常为所开线程传入个窗口参数(cwnd),这里里面有个很大隐患就是当做CWnd::AssertValid()检查,就会遇到断言失败。具...时常为所开线程传入个窗口参数 (cwnd),这里里面有个很大...