码迷,mamicode.com
首页 >  
搜索关键字:extern    ( 2302个结果
《编程之美》之如何控制CPU的暂用率固定在50%
《编程之美》第一章 让CPU暂用率听你指挥的粗糙实现,如何控制CPU的暂用率固定在50%#include #include #ifdef __cplusplus extern "C" { #endif #include #ifdef __cplusplus } #endif #define Get....
分类:其他好文   时间:2014-07-10 10:36:20    阅读次数:213
[c language] getopt 其参数optind 及其main(int argc, char **argv) 参数解释
getopt被用来解析命令行选项参数。#include extern char *optarg; //选项的参数指针extern int optind, //下一次调用getopt的时,从optind存储的位置处重新开始检查选项。 extern int opterr, //当opterr=0...
分类:其他好文   时间:2014-07-07 11:11:37    阅读次数:246
c++头文件
头文件是c/c++中特有的概念。 首先解释声明和定义的区别。extern int x;此为变量x声明,void fun();此为函数fun()声明,class a;此为类a声明。int x;为变量x定义,void fun(){};则为fun()函数的定义,class a{};则为类a的定义。 头文件中存放预处理命令(#开头的命令),函数声明,类、结构体、联合定义(不能实例化对象),模板定义等。...
分类:编程语言   时间:2014-07-03 13:25:38    阅读次数:226
.net 获取网络时间(北京时间)24小时制
/// /// 更新系统时间 /// public class UpdateTime { //设置系统时间的API函数 [DllImport("kernel32.dll")] private static extern bool SetLocalTime(...
分类:Web程序   时间:2014-07-02 23:52:35    阅读次数:340
C# 安装字体
using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;[DllImport("kernel32.dll", SetLastError = true)]static extern int Writ...
分类:其他好文   时间:2014-07-02 22:46:27    阅读次数:334
pthread_join函数
函数简介函数pthread_join用来等待一个线程的结束。函数原型为:extern int pthread_join (pthread_t__th, void **__thread_return);第一个参数为被等待的线程标识符,第二个参数为一个用户定义的指针,它可以用来存储被等待线程的返回值。这...
分类:其他好文   时间:2014-07-01 23:16:49    阅读次数:336
C#:获取设备电量相关信息
[DllImport("kernel32.dll",EntryPoint="GetSystemPowerStatus")] //win32 api private static extern void GetSystemPowerStatus(ref SYSTEM_POWER_...
分类:其他好文   时间:2014-07-01 19:39:50    阅读次数:162
Lua 与C交互 第二篇
使用静态链接的方式 #include #include #include #ifdef __cplusplus extern "C" { #endif #include "lua/include/lua.h" #include "lua/include/lauxlib.h" #include "lua/include/lualib.h" #pragma comment (li...
分类:其他好文   时间:2014-07-01 07:50:09    阅读次数:189
strcpy
C 语言标准库函数原型声明:extern char *strcpy(char* dest, const char *src);头文件:#include 功能:把从src地址开始且含有NULL结束符的字符串复制到以dest开始的地址空间说明:src和dest所指内存区域不可以重叠且dest必须有足够的...
分类:其他好文   时间:2014-06-30 22:45:02    阅读次数:340
Lua 与C交互 第二篇
使用静态链接的方式 #include #include #include #ifdef __cplusplus extern "C" { #endif #include "lua/include/lua.h" #include "lua/include/lauxlib.h" #include "lua/include/lualib.h" #pragma comment (li...
分类:其他好文   时间:2014-06-30 18:28:47    阅读次数:216
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!