转自:https://www.heflo.com/blog/bpm/bpmn-pdf/ If you are looking for more information about BPMN (Business Process Model and Notation) in handouts, or e ...
分类:
其他好文 时间:
2019-02-25 10:44:13
阅读次数:
246
单例是什么?单例是一种特殊的类,用于确保只有一个对象,同时提供一种全局访问这个对象的方法。最近在工作中体验了一把5分钟将一个类改造成单例,感觉还是蛮不错的,所以我决定写一篇文章,跟大家交流技术和经验。 单例的原理是利用C++中的静态成员变量和静态成员函数,同时禁用构造函数的方法,达到只有一个对象实例 ...
分类:
其他好文 时间:
2019-02-25 00:37:12
阅读次数:
165
// 常用的正则规则// eslint-disable-next-lineexport const regExpConfig = { IDcard: /^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$|^[1-9]\d{5}[1-9]\d{3 ...
分类:
其他好文 时间:
2019-02-24 23:15:34
阅读次数:
309
题目如下: We are given the root node of a maximum tree: a tree where every node has a value greater than any other value in its subtree. Just as in the pr ...
分类:
其他好文 时间:
2019-02-24 23:11:15
阅读次数:
346
形式:Class_name(const Class_name & other){};//他接受一个指向类对象的常量应用作为参数。 const关键字的作用是保护other对象中的内容不发生变化。 1、何时调用拷贝构造函数: 新建一个对象并将其初始化为同类现有对象时,拷贝构造函数都将被调用。 这四种情况 ...
分类:
其他好文 时间:
2019-02-23 18:20:41
阅读次数:
240
权限管理:ls-lrwxrwxrwx:左三位:定义user(owner)的权限中三位:定义group的权限右三位:定义other的权限进程安全上下文:进程对玩家的访问权限应用模型:进程的属主与文件的属主是否相同,如果相同,则应用属主权限;否则,则检查进程的属主是否属于我就的属组;如果是,则应用属组权限;否则,就只能应用other的权限;权限:r:readble,读w:writeble,写x:exc
分类:
系统相关 时间:
2019-02-22 21:10:42
阅读次数:
214
二叉树是一种树形结构,它的特点是每个每个结点至多有两棵子树,二叉树有左、右子树之分,且左、右子树不能颠倒。二叉树及其变体树形结构在实际编程中使用的非常多,如:哈弗曼树,线索二叉树,红黑树等。
分类:
其他好文 时间:
2019-02-21 09:19:13
阅读次数:
177
The "eight queens puzzle" is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solutio ...
分类:
其他好文 时间:
2019-02-20 21:39:03
阅读次数:
176
昨天遇到这两个模型导入的问题,查了一下资料,自己摸索了一下解决方法。。总结一下~ 出现的原因:(问题1)Warning 当模型文件导入以后并且设置Animation Type是Generic的时候,动画文件不报warning 但是当我们将Animation Type设置成Humanoid并且 Ava ...
分类:
编程语言 时间:
2019-02-19 13:46:03
阅读次数:
419
参考 "How to Convert SVG Files to other Image Formats on Ubuntu 12.04/11.10" Ubuntu 下将 svg 图片转换为其他格式 (如 png) 通过 转换 格式的图片: 2019.2 ...
分类:
系统相关 时间:
2019-02-19 00:51:54
阅读次数:
264