05 2022 档案
摘要:QString 类中各函数的作用。 一、字符串连接函数 1、QString也重载的+和+=运算符。这两个运算符可以把两个字符串连接到一起。 2、QString的append()函数则提供了类似的操作,例如: str = "User: "; str.append(userName); str.appe
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #include <NIDAQmx.h> #define DAQmxErrChk(functionCall) if( DAQmxFailed(error=(functionCall)) ) goto Error; else
阅读全文
摘要:#include <stdio.h> #include <NIDAQmx.h> #define DAQmxErrChk(functionCall) if( DAQmxFailed(error=(functionCall)) ) goto Error; else int main(void) { in
阅读全文
摘要:错误: C2360 “position”的初始化操作由“case”标签跳过 原因:case里面定义变量要用{}括起来,我定义了int position所以出现问题
阅读全文
摘要:Software controlled digital output To check it connect digital output(s) to oscilloscope or to card analog input. program doportlpi; {$mode objfpc}{$H
阅读全文