码迷,mamicode.com
首页 >  
搜索关键字:routine    ( 212个结果
Arduino 串口输出LM35温度
#include "stdlib.h" float temp = 0.0; float maxtemp = 0.0; float mintemp =100.0; // the setup routine runs once when you press reset: void setup() { S... ...
分类:其他好文   时间:2017-03-12 01:14:42    阅读次数:439
软件工程项目第一次作业
I have recently completed a project which was the big job of visual course. As a homework, of course, it is non-routine. It need a plan to finish the ...
分类:其他好文   时间:2017-02-27 22:54:39    阅读次数:237
多目标遗传算法 ------ NSGA-II (部分源码解析)父、子种群合并 merge.c
1 /* Routine for mergeing two populations */ 2 3 # include 4 # include 5 # include 6 7 # include "global.h" 8 # include "rand.h" 9 10 /* Routine to me... ...
分类:编程语言   时间:2017-01-08 16:29:23    阅读次数:192
What is the difference between routine , method , procedure , function ? please explain it with example?
a method is named and attached to an object. so, for example, a method is like a function but is contained inside a class. its scope is limited to tha ...
分类:其他好文   时间:2016-12-27 07:29:12    阅读次数:141
用户态API(pthread)
int pthread_create((pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg)若线程创建成功,则返回0。若线程创建失败,则返回出错编号,并且*thread中的内容是未定义的 ...
分类:Windows程序   时间:2016-12-04 19:24:58    阅读次数:212
Chapter 2 Open Book——15
The rest of the week was uneventful. I got used to the routine of my classes. 这周剩下的时间都是平淡无事的。我就是正常的上课。 By Friday I was able to recognize, if not name, ...
分类:其他好文   时间:2016-11-24 06:35:03    阅读次数:159
Caché数据库学习笔记(2)
目录: 创建新类(表)(class文件)与创建routine(.mac .inc) 在类里面添加函数(classmethod) Terminal的使用 创建新类(表)(class文件)与创建routine(.mac .inc) 一个.cls文件对应一个.mac文件和.inc文件,属性(propert ...
分类:数据库   时间:2016-10-12 22:10:40    阅读次数:241
mfc线程
1、生成线程 HANDLE hthread; //线程句柄 hthread=CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)threadFunc,NULL,0,NULL);//获得句柄 CloseHandle(hthread); 2、线程函数 threadFu ...
分类:编程语言   时间:2016-09-30 00:48:37    阅读次数:172
windows api线程
void CTestDlg::threadFunc(void) //在TestDlg.cpp里定义 { Sleep(1000); AfxMessageBox(_T("OK!")); } hthread=CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)threa ...
分类:编程语言   时间:2016-09-21 14:22:14    阅读次数:165
发一个存储过程,个人比较常用的语法都在里头了
CREATE PROCEDURE `proc_updatehouse`()BEGIN #Routine body goes here... declare eof int ; declare projname varchar(200) charset utf8 default '' ; declar ...
分类:其他好文   时间:2016-09-13 13:22:59    阅读次数:107
212条   上一页 1 ... 6 7 8 9 10 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!