上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页
摘要: 已知P1、P2、P3、L,求P0: 阅读全文
posted @ 2022-06-17 10:31 王牌飞行员_里海 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 分享一种判断圆柱面是不是孔的方法。 如下图所示体上有三个圆柱面,2个孔和1个R角面。可以通过面的边的组数(loop)判断圆柱面是不是孔。孔的loop至少有2个。 代码: //获取面上loop的数量 int getFaceLooscount(tag_t tagFace) { uf_loop_t *lo 阅读全文
posted @ 2022-06-17 10:14 王牌飞行员_里海 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 获取环境变量 #include <iostream> #include <string> #include <vector> #include <stdlib.h> using namespace std; //获取环境变量 string getEnv(string strEnvName) { ch 阅读全文
posted @ 2022-06-08 17:07 王牌飞行员_里海 阅读(553) 评论(0) 推荐(0) 编辑
摘要: char *cSysLog; UF_ask_syslog_filename(&cSysLog); string strSysLog = cSysLog; print("%s\n", strSysLog.c_str()); UF_free(cSysLog); 阅读全文
posted @ 2022-06-08 15:06 王牌飞行员_里海 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 数组类型变量的三个限制1.数组长度不变;2.编译时必须知道其长度;3.数组只能在定义的语句块内存在。 创建动态数组1.可以在运行时再确定数组长度;2.动态数组将一直存在,直到程序显式释放它为止;3.每一个程序执行时都会占用一块可用的内存空间,用于动态分配对象,此内存空间称为程序的“自由存储区”或“堆 阅读全文
posted @ 2021-08-19 09:09 王牌飞行员_里海 阅读(3492) 评论(0) 推荐(0) 编辑
摘要: c语言中没有字符串这种数据类型,只有char字符类型,在C语言中所谓的字符串其实是char数组,数组最后一个元素加上“\0",表示字符串结束,这是一种字符串的表达方式。 例如下面charA、charB是等价的 char charA[] = {"abc"}; char charB[] = { 'a', 阅读全文
posted @ 2021-08-18 18:27 王牌飞行员_里海 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 引用是一种复合类型,通过在变量名前添加“&”符号来定义。 引用只是对象的另一个名字 int iVal = 1024; int &refVal = iVal; refVal++; cout << iVal << endl; //1025 const引用 const int iVal = 1024; c 阅读全文
posted @ 2021-08-18 09:13 王牌飞行员_里海 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 缺少头文件 #include <ShellAPI.h> 阅读全文
posted @ 2021-08-17 14:48 王牌飞行员_里海 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 指针的定义和初始化 //定义一个strA初始化为"ABC" string strA("ABC"); //定义一个指向string类型的指针p1,并初始化指向strA对象 //*操作符表明p1是一个指针变量;&是取地址操作符 string *p1 = &strA; //*是取值操作符,取p1指针指向的 阅读全文
posted @ 2021-08-17 14:13 王牌飞行员_里海 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 效果: 源码: #include <uf.h> #include <uf_ui.h> extern DllExport void ufusr(char *param, int *returnCode, int rlen) { UF_initialize(); char* release; UF_ge 阅读全文
posted @ 2021-08-02 11:13 王牌飞行员_里海 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页