- UID
- 36203
- 积分
- 807
- 精华
- 贡献
-
- 威望
-
- 活跃度
-
- D豆
-
- 在线时间
- 小时
- 注册时间
- 2003-3-16
- 最后登录
- 1970-1-1
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
变量的命名规则是不是这样的:p开头的都是指针变量?
但在下面的例子中,却不符合这个要求: AcDbObjectId pGroupId;
pGroupId应该是指针变量啊,还是应该为GroupId啊?
- void
- createGroup(AcDbObjectIdArray& objIds, char* pGroupName)
- {
- AcDbGroup *pGroup = new AcDbGroup(pGroupName);
- for (int i = 0; i < objIds.length(); i++) {
- pGroup->append(objIds[i]);
- }
- // Put the group in the group dictionary that resides
- // in the named object dictionary.
- //
- AcDbDictionary *pGroupDict;
- acdbHostApplicationServices()->workingDatabase()
- ->getGroupDictionary(pGroupDict, AcDb::kForWrite);
- AcDbObjectId pGroupId;
- pGroupDict->setAt(pGroupName, pGroup, pGroupId);
- pGroupDict->close();
- pGroup->close();
- }
复制代码
2005.12.27
long transaction是什么意思?
Long Transactions are used to support the AutoCAD Reference Editing feature and are very useful for ObjectARX applications.
这句话的意思大概是:Long Transactions 是用来支持AutoCAD 参照编辑,并且......
但Long Transactions 翻译成中文是什么呀? |
|