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

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

C++模板的特化 - C/C++ - 清泛网 - 专注C/C++及内核技术

... 模板有两种特化,全特化和偏特化(局部特化) 模板函数只能全特化,没有偏特化(以后可能有)。 模板类是可以全特化和偏特化的。 全特化,就是模板中模板参数全被指定为确定的类型。 全特化也就是定义了一个全新...
https://www.tsingfun.com/it/cpp/2034.html 

Linux编程中各种头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

...2.stdlib.h stdlib 头文件里包含了C、C++语言的最常用的系统函数stdlib.h里面定义了五种类型、一些宏和通用工具函数。类型例如size_t、wc...1.stdlib.h  stdlib 头文件里包含了C、C++语言的最常用的系统函数 stdlib.h里面定义了五种类型...
https://stackoverflow.com/ques... 

What is an uninterruptible process?

...hard drive, or moving heads. During most of this time, the process will be sleeping, blocking on the hardware. While the process is sleeping in the system call, it can receive a Unix asynchronous signal (say, SIGTERM), then the following happens: The system calls exits prematurely, and is set up ...
https://stackoverflow.com/ques... 

Multiprocessing vs Threading Python [duplicate]

...lt, self.niters) class IoThread(threading.Thread): def __init__(self, sleep): super().__init__() self.sleep = sleep self.result = self.sleep def run(self): time.sleep(self.sleep) class IoProcess(multiprocessing.Process): def __init__(self, sleep): ...
https://www.tsingfun.com/it/cpp/1195.html 

C++形参与实参的区别(实例解析) - C/C++ - 清泛网 - 专注C/C++及内核技术

...,有助于读者加深对于C++形参与实参的认识。形参出现在函数定义中,在整个函数体内都可以使用, 离...本文以实例阐述了C++中形参与实参的区别,有助于读者加深对于C++形参与实参的认识。 形参出现在函数定义中,在整个函...
https://www.tsingfun.com/it/cpp/1426.html 

C++静态和多态,亦敌亦友 - C/C++ - 清泛网 - 专注C/C++及内核技术

...。这一篇我们并不讨论静态(成员)变量或静态(成员)函数有什么作用,而是讨论“静态”的行为,对比“多态”。我们这里所说的静态,是指:compiler time,即编译时绑定、早绑定、静态联编;而“多态”就是真正的runtime绑...
https://www.tsingfun.com/it/cpp/1369.html 

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

...果这两个文件在同一目录下,-lcurl默认是链接.so滴) 二.函数简要说明 在基于LibCurl的程序里,主要采用callback function (回调函数)的形式完成传输任务,用户在启动传输前设置好各类参数和回调函数,当满足条件时libcurl将调...
https://stackoverflow.com/ques... 

What are file descriptors, explained in simple terms?

...es as an example and how does it apply for it? Check out this code #>sleep 1000 & [12] 14726 We created a process with the id 14726 (PID). Using the lsof -p 14726 we can get the things like this: COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME sleep 14726 root cwd DIR ...
https://www.tsingfun.com/it/cpp/1871.html 

Boost.Asio的简单使用(Timer,Thread,Io_service类) - C/C++ - 清泛网 - 专注C/C++及内核技术

...的通过include "...目录: 1. 同步Timer 2. 异步Timer 3. 回调函数的参数 4. 成员函数作为回调函数 5. 多线程回调同步 6. TCP客户端:对准时间 7. TCP同步时间服务器 1. 同步Timer 本章介绍asio如何在定时器上进行阻塞等待(blocking wait)....
https://www.tsingfun.com/it/cpp/2160.html 

VC菜单命令详解(文件打开、保存与关闭) - C/C++ - 清泛网 - 专注C/C++及内核技术

...解(文件打开、保存与关闭)第一部分:五个命令ID: 处理函数ID_FILE_NEW CWinApp::OnFileNewID_FILE_OPEN CWinApp::OnFileOpenID_FILE_SAVE CDocument::OnFileSav...第一部分: 五个命令ID: 处理函数 ID_FILE_NEW CWinApp::OnFileNew ID_FILE_OPEN CWinApp::OnFileOpe...