相关文章
Python搭建http下载服务器
import http.server
import socketserverPORT 8002Handler http.server.SimpleHTTPRequestHandlerwith socketserver.TCPServer(("", PORT), Handler) as httpd:print("serving at port", PORT)httpd.serve_forever()使用: 保存为httpserver.…
编程日记
2025/1/24 12:02:56
关于TrAXFilter类在动态加载的利用思考以及如何无视构造器获取对象
第一个问题
今天在又看cc3的时候想不通一个问题,就是关于TrAXFilter这个类,我们看到这个类的构造方法
public TrAXFilter(Templates templates) throwsTransformerConfigurationException{_templates templates;_transformer (TransformerImpl) tem…
编程日记
2025/1/22 10:29:21
牛客热题:合并K个升序链表
📟作者主页:慢热的陕西人 🌴专栏链接:力扣刷题日记 📣欢迎各位大佬👍点赞🔥关注🚓收藏,🍉留言 文章目录 牛客热题:合并K个升序链表题目链接&#…
编程日记
2025/1/22 1:57:17
openssl3.2 - exp - get openssl version info
文章目录 openssl3.2 - exp - get openssl version info概述笔记END openssl3.2 - exp - get openssl version info
概述
查资料时,看到用API取旧版openssl取版本信息。 去openssl工程中看了一下,有个内部测试程序有如何取openssl版本信息的API调用例子…
编程日记
2025/1/24 22:15:15
go设计模式之组合设计模式
组合设计模式
简介
将对象组合成树形结构以表示“部分-整体”的层次结构。组合设计模式使得用户对单个对象和组合对象的使用具有一致性。
参与者 Component 为组合中的对象声明接口 Leaf 在组合中表示叶子节点对象。 Composite 存储子部件。访问和管理子部件。
案例1
c…
编程日记
2025/1/24 18:05:44