微笑钢笔

文章
6
资源
0
加入时间
2年10月21天

python导入和模块化

1. 导入# import os.path # 注意os模块和path模块都加载了,但是dir()中只能拿到osimport os # import后只能写模块名import os.pathimport os.path as osp # 取别名,注意是os.path的别名,不是os的别名print(dir())# ['__annotations__', '__builtins_...

Mybatis学习(一)使用idea和mybatis编写第一个程序

1.什么是Mybatis?(1)Mybatis是一个半ORM(对象关系映射)框架,它内部封装了JDBC,开发时只需要关注SQL语句本身,不需要花费精力去处理加载驱动、创建连接、创建statement等繁杂的过程。程序员直接编写原生态sql,可以严格控制sql执行性能,灵活度高。(2)MyBatis 可以使用 XML 或注解来配置和映射原生信息,将 POJO映射成数据库中的记录,避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。(3)通过xml 文件或注解的方式将要执行的各种 stat

Linux 串口读取

#include <stdlib.h>#include <fcntl.h>#include "stdio.h"#include "termios.h"#include "unistd.h"#include "limits.h"#include <stdint.h>#include "time.h" /