摘要: STS中的build path是一种缺省的路径,相当于windows的环境变量中的path,利用它可以将jsp等文件放入其中,程序只需要文件名就可以找到它。 (1)在Package Explorer中右击创建新的文件夹; (2)右击新文件夹,点build path-->use as a source 阅读全文
posted @ 2019-09-06 10:09 小船1968 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 由于OpenGL的标准更新不是很频繁,因此,当某种技术应用流行起来时,显卡厂商为了支持该技术,会使用自己的扩展来实现该功能。但是不同厂商如果有不同的实现,那么程序编写将会异常繁琐。因此多个厂商共同协商使用一致的扩展,这就是EXT扩展。 如果这个扩展不仅多厂商协商,而且得到OpenGL体系结构审核委员 阅读全文
posted @ 2019-08-27 09:00 小船1968 阅读(618) 评论(0) 推荐(0) 编辑
摘要: QT使用OpenGL双缓冲 阅读全文
posted @ 2019-07-14 11:48 小船1968 阅读(4878) 评论(0) 推荐(0) 编辑
摘要: 用桥接模式设置VM 阅读全文
posted @ 2019-07-07 17:39 小船1968 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1.C程序的静态变量和函数 引用自:https://blog.csdn.net/thanklife/article/details/78476737 作者:零点零一 引用自:https://blog.csdn.net/thanklife/article/details/78476737 作者:零点零 阅读全文
posted @ 2019-07-02 11:23 小船1968 阅读(2699) 评论(0) 推荐(0) 编辑
摘要: 1. 自己构造新类,注意必须在头文件最后加上分号 写个c++类报“构造函数不能有返回类型”, 谷歌一下,才找到原因: 原来是我定义的类后面没有用“;”结尾,构造函数默认把整个类作为返回值了 2. 新建类后,报LNK2019:找不到一个函数 的实现 原因是QT的一个BUG,需要将生成目录删除并重新编译 阅读全文
posted @ 2019-06-28 15:19 小船1968 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 如果实参与引用参数不匹配,C++将生成临时变量。如果引用参数是const,则编译器在下面两种情况下生成临时变量: 实参类型是正确的,但不是左值 实参类型不正确,但可以转换为正确的类型 左值参数是可被引用的数据对象,例如,变量、数组元素、结构成员、引用和被解除引用的指针都是左值,非左值包括字面常量和包 阅读全文
posted @ 2019-06-03 21:32 小船1968 阅读(4056) 评论(0) 推荐(0) 编辑
摘要: 1 Introduction A polygon is a closed chain of edges. Several algorithms are available for polygons. For some of those algorithms, it is necessary that 阅读全文
posted @ 2018-12-31 09:32 小船1968 阅读(744) 评论(0) 推荐(0) 编辑
摘要: 1 Introduction A subset S⊆R2 is convex if for any two points p and q in the set the line segment with endpoints p and q is contained in S. The convex 阅读全文
posted @ 2018-12-29 16:47 小船1968 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 1 Which Programs can be Solved? This package lets you solve convex quadratic programs of the general form in n real variables x=(x0,…,xn−1). Here, A i 阅读全文
posted @ 2018-12-29 14:27 小船1968 阅读(845) 评论(0) 推荐(0) 编辑