ifcprepresentationstyleselect提供了在不同的表示样式之间进行选择以分配给样式化的项。 注:定义根据ISO/CD 10303-46:1992 表示样式选择是多种样式中的一种,对于要设计样式的每种几何表示项都是不同的。 注释类型改编自ISO10303-46中定义的表示样式选择 ...
分类:
其他好文 时间:
2021-01-02 10:54:43
阅读次数:
0
public 任意包的任意类都可以访问 protected 可以在不同的包的子类中被访问 其他的类不能访问 默认(default) 同一个包的子类访问 private 只能在本类中访问 ...
分类:
其他好文 时间:
2020-12-31 12:57:03
阅读次数:
0
原创/朱季谦 在Spring Security权限框架里,若要对后端http接口实现权限授权控制,有两种实现方式。 一、一种是基于注解方法级的鉴权,其中,注解方式又有@Secured和@PreAuthorize两种。 @Secured如: 1 @PostMapping("/test") 2 @Sec ...
分类:
编程语言 时间:
2020-12-30 10:55:50
阅读次数:
0
创建好的Maven项目: 首先要在main下创建两个文件夹:java,resources/config(标准是resources) 然后把Java文件用Make Directory as设置为Sources Root 把resources用Make Directory as设置为Resources ...
分类:
编程语言 时间:
2020-12-30 10:49:00
阅读次数:
0
curl is a a command line tool that allows to transfer data across the network. It supports lots of protocols out of the box, including HTTP, HTTPS, FT ...
分类:
Web程序 时间:
2020-12-29 11:24:49
阅读次数:
0
// 并查集模板,包含路径压缩(参考 findset 函数)以及按秩合并(参考 sz 变量) class UF { public: vector<int> fa; vector<int> sz; int n; int comp_cnt; public: UF(int _n): n(_n), comp ...
分类:
其他好文 时间:
2020-12-25 12:01:55
阅读次数:
0
nvm arch [32|64]: Show if node is running in 32 or 64 bit mode. Specify 32 or 64 to override the default architecture. nvm install <version> [arch]: T ...
分类:
其他好文 时间:
2020-12-24 12:04:21
阅读次数:
0
今天打算学习处理乱码 <!--版本说明--> <?xml version="1.0" encoding="UTF-8" ?> <! xml 文档的 schema-> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://w ...
分类:
其他好文 时间:
2020-12-24 12:03:47
阅读次数:
0
不支持的字符集 (在类路径中添加 orai18n.jar): ZHS16GBK 报错图示: 报错内容: Exception in thread "main" java.sql.SQLException: 不支持的字符集 (在类路径中添加 orai18n.jar): ZHS16GBK at oracl ...
分类:
编程语言 时间:
2020-12-23 12:36:09
阅读次数:
0
Visual Studio Installer打包安装项目VS2015 使用VS2015的Visual Studio Installer打包安装项目,虽然整体操作很简单,但还是有几个特殊的点需要记一下,故写下此博客方便以后查阅 第一步,创建安装项目 如下: 里面最左侧的框框有三个文件夹 1.“应用程 ...
分类:
其他好文 时间:
2020-12-23 11:41:46
阅读次数:
0