public static <T> T get(@NotNull Class<T> resType, @NotBlank String url)这行代码什么意思
时间: 2024-04-23 08:22:31 浏览: 172
这行代码是一个 Java 泛型方法,用于从指定的 URL 加载资源并将其转换为指定的类型。具体解释如下:
- `public static`: 这是一个公共静态方法,可以从任何地方访问而不需要创建对象实例。
- `<T>`: 这是一个泛型类型参数,用于指定要返回的资源的类型。
- `T get`: 这是方法的返回类型,即获取的资源的类型。
- `@NotNull Class<T> resType`: 这是一个参数,用于指定要返回的资源类型的 Class 对象。@NotNull 注解表示该参数不能为空。
- `@NotBlank String url`: 这是一个参数,用于指定要加载资源的 URL 字符串。@NotBlank 注解表示该参数不能为空且必须包含至少一个非空格字符。
因此,这个方法的作用是从指定的 URL 加载资源并将其转换为指定的类型。
相关问题
const handleChangeType: (data: API.SysResourceEntity_[]) => Array<ITree> = (data) => { let temp: Array<ITree> = []; data.forEach((item) => { if (item.resType === 1) { let p = { title: item.resName, value: item.id, key: item.id, }; if (item.children && item.children.length > 0) { p.children = handleChangeType(item.children); } temp.push(p); } }); return temp; };
这是一个 TypeScript 函数,接收一个 API.SysResourceEntity_[] 类型的参数 data(即一个 SysResourceEntity_ 类型的数组),返回一个 ITree 类型的数组。
该函数的作用是将 SysResourceEntity_ 类型的数据转换成 ITree 类型的树形结构数据。具体实现过程如下:
1. 首先定义一个空数组 temp,用于存储转换后的树形结构数据。
2. 遍历传入的 data 数组,对每个元素进行判断。
3. 如果当前元素的 resType 属性为 1,说明该元素为一级节点,需要将其转换为一个 ITree 对象,同时递归调用 handleChangeType 函数,将该元素的 children 属性转换成 ITree 对象的 children 属性。
4. 将转换后的 ITree 对象 push 到 temp 数组中。
5. 最后返回 temp 数组,即为转换后的树形结构数据。
需要注意的是,该函数中的 ITRee 类型没有给出具体的定义,需要根据实际情况进行定义。另外,该函数中使用了递归调用,因此需要确保传入的数据结构是符合要求的,否则可能会导致递归调用的死循环。
objectarx二次开发自定义实体,实体数据是一个结构体tagGmyMapTable,结构体tagGmyMapTable中包含另外一个结构体tagGeometryWithID geoID、一个类指针ElmGraphic* geoData、一个bool变量isBatchDrawBroadWise,而结构体tagGeometryWithID保存的是一个unsigned long long int elementID数据和一个vector<wstring> exDataVec,类指针geoData中有一个vector<shared_ptr<CBaseGeometry>> ptrgeos, CBaseGeometry是个基类,使用时会根据CBaseGeometry中的int型type的参数判断强制转换成不同子类进行绘制,子类中的数据也不相同,CBaseGeometry中包含了vector<AcGePoint3D> Pts以及字符串、int等数据,请问如何保存读取这些数据到dwg
在使用ObjectARX二次开发自定义实体时,需要实现AcDbEntity的相关接口函数,以便在dwg文件中保存和读取实体数据。
对于结构体tagGmyMapTable和tagGeometryWithID中的数据,可以使用AcDbXrecord类来进行保存和读取。AcDbXrecord是一种特殊的实体,其内部可以保存任何类型的数据,包括结构体、类指针等。
以下是保存tagGmyMapTable数据到dwg文件的示例代码:
```cpp
void saveMapTableToDwg(const AcDbObjectId& id, const tagGmyMapTable& mapTable)
{
// 打开实体对象
AcDbEntityPtr pEnt(id, AcDb::kForWrite);
if (pEnt.isNull())
return;
// 创建Xrecord对象
AcDbXrecordPtr pXrec = new AcDbXrecord;
pXrec->setXlateReferences(true);
// 将tagGmyMapTable数据保存到Xrecord中
resbuf* pBuf = acutBuildList(
RTSHORT, 0, // 数据版本号
RTSHORT, sizeof(tagGmyMapTable), // 数据长度
RTENDBR);
pBuf->rbnext = acutBuildList(
RTLONG, mapTable.geoID, // 保存tagGeometryWithID数据
RTLONG, mapTable.isBatchDrawBroadWise,
RTLONG, mapTable.geoData->ptrgeos.size(),
RTENDBR);
pBuf->rbnext->rbnext = acutBuildList(
RTLONG, mapTable.geoData->type,
RTLONG, mapTable.geoData->Pts.size(),
RTENDBR);
pBuf->rbnext->rbnext->rbnext = acutBuildList(
RTSTR, mapTable.geoData->name.c_str(),
RTSTR, mapTable.geoData->desc.c_str(),
RTLONG, mapTable.geoData->color,
RTENDBR);
pXrec->setFromRbChain(*pBuf);
acutRelRb(pBuf);
// 将Xrecord对象保存到实体中
pEnt->setXData(pXrec);
}
```
同样,可以使用AcDbXrecord类将tagGeometryWithID和CBaseGeometry的数据保存到dwg文件中。
读取数据时,需要先读取AcDbXrecord对象,然后解析其中的数据,重新构造出原来的结构体、类指针等。
以下是从dwg文件中读取tagGmyMapTable数据的示例代码:
```cpp
tagGmyMapTable getMapTableFromDwg(const AcDbObjectId& id)
{
tagGmyMapTable mapTable;
// 打开实体对象
AcDbEntityPtr pEnt(id, AcDb::kForRead);
if (pEnt.isNull())
return mapTable;
// 读取Xrecord对象
AcDbObjectIdArray xrecIds;
pEnt->getXData(xrecIds);
AcDbXrecordPtr pXrec;
if (xrecIds.length() > 0)
acdbOpenObject(pXrec, xrecIds[0], AcDb::kForRead);
if (pXrec.isNull())
return mapTable;
// 解析Xrecord中的数据
resbuf* pBuf = pXrec->rbChain();
if (pBuf == nullptr)
return mapTable;
// 读取tagGeometryWithID数据
if (pBuf->restype == RTSHORT && pBuf->resval.rint == 0)
{
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTSHORT || pBuf->resval.rint != sizeof(tagGeometryWithID))
return mapTable;
tagGeometryWithID geoID;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
geoID.elementID = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
mapTable.isBatchDrawBroadWise = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
int geoDataSize = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
geoID.type = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
int ptsSize = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTSTR)
return mapTable;
geoID.name = pBuf->resval.rstring;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTSTR)
return mapTable;
geoID.desc = pBuf->resval.rstring;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
geoID.color = pBuf->resval.rlong;
// 读取vector<wstring>数据
for (int i = 0; i < exDataSize; i++)
{
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTSTR)
return mapTable;
geoID.exDataVec.push_back(pBuf->resval.rstring);
}
mapTable.geoData = new tagGeometryWithID(geoID);
}
// 读取vector<shared_ptr<CBaseGeometry>>数据
if (pBuf->restype == RTSHORT && pBuf->resval.rint == 1)
{
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
int ptrgeosSize = pBuf->resval.rlong;
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTLONG)
return mapTable;
int type = pBuf->resval.rlong;
vector<AcGePoint3d> pts;
int ptsSize = 0;
string name, desc;
int color = 0;
// 读取vector<AcGePoint3d>数据
for (int i = 0; i < ptsSize; i++)
{
pBuf = pBuf->rbnext;
if (pBuf == nullptr || pBuf->restype != RTPOINT)
return mapTable;
pts.push_back(asPnt3d(pBuf));
}
// 读取字符串、int等数据
while (true)
{
pBuf = pBuf->rbnext;
if (pBuf == nullptr)
break;
if (pBuf->restype == RTSTR)
{
if (name.empty())
name = pBuf->resval.rstring;
else if (desc.empty())
desc = pBuf->resval.rstring;
}
else if (pBuf->restype == RTLONG)
{
if (color == 0)
color = pBuf->resval.rlong;
}
}
// 根据type创建不同的子类对象
shared_ptr<CBaseGeometry> pGeo;
switch (type)
{
case 1:
pGeo = make_shared<CLine>(pts, name, desc, color);
break;
case 2:
pGeo = make_shared<CArc>(pts, name, desc, color);
break;
// 其他子类
}
mapTable.geoData->ptrgeos.push_back(pGeo);
}
return mapTable;
}
```
需要注意的是,保存和读取数据时,需要将数据按照一定的格式打包成resbuf链表,以便于保存到Xrecord中或从Xrecord中读取。对于不同类型的数据,需要使用不同的resbuf类型来保存和读取。具体的格式可以根据实际需要进行调整。
阅读全文