10 2021 档案
摘要:原码的加减运算 补码的加减运算 溢出判断 第一种方式溢出判断 第二种方式溢出判断 第三种方式 符号扩展 知识点回顾
阅读全文
摘要:原码与补码乘法的对比 机器模拟算法 手算模拟运算 知识点回顾
阅读全文
摘要:原码的算数移位 反码的算数移位 补码的算数移位 算数移位总结 案例 逻辑移位 逻辑移位应用举例 循环移位 总结
阅读全文
摘要:请求钩子 通过装饰器为一个模块添加请求钩子, 对当前模块的请求进行额外的处理. 比如权限验证. 应用钩子函数 before_first_request 在对应用程序实例的第一个请求之前注册要运行的函数, 只会执行一次 #: A lists of functions that should be ca
阅读全文
摘要:cookie方式 1、保存cookie,通过response对象获取 response = redirect() response = render_template() response = Response() response = make_response() response = json
阅读全文