随笔分类 -  编程

摘要:Electron是由GitHub开发的一个开源框架,原名为Atom Shell。其基于Node.js,使用chrome渲染引擎作为前端,可以进行跨平台的桌面GUI应用程序开发。如VSCode就是采用Electron开发的。 使用中出现的问题 linux下的root权限问题 在linux下运行时,如果 阅读全文
posted @ 2021-11-25 12:40 esctrionsit 阅读(1957) 评论(0) 推荐(0)
摘要:#include <iostream> #include <string> #include <vector> int main(){ std::string infile = "./infile.txt"; std::ifstream in(infile.c_str()); // 将string对 阅读全文
posted @ 2021-08-23 15:51 esctrionsit 阅读(131) 评论(0) 推荐(0)
摘要:通过c/c编写动态链接库,再用Python调用写好的函数,可以有效利用c/c程序的高效与Python的便捷。Python的ctypes库提供了相对便捷的clib调用。 下述代码在Python3中成功运行,但是Python2会报错,原因尚未深究。 C++ #include <iostream> #in 阅读全文
posted @ 2021-08-23 15:07 esctrionsit 阅读(413) 评论(0) 推荐(0)