上一页 1 2 3 4 5 6 7 8 ··· 41 下一页
摘要: 目录模块的概念对模块命名模块化的 "Hello,World" 程序 模块的概念 在面向对象编程中,基础的构建要素就是类。类提供了封装,私有特性只能被具有明确访问权限的代码访问,即,只能被其所属类中的方法访问,这使得对访问情况的推断称为可能。如果某个私有变量发生了变化,那么我们就会发现一系列可能出错的 阅读全文
posted @ 2024-04-14 21:31 chuangzhou 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/lulik7565/article/details/91041704 阅读全文
posted @ 2024-04-10 11:34 chuangzhou 阅读(26) 评论(0) 推荐(0) 编辑
摘要: println("hellof grovvy"); println("hellof grovvy2") println "hellof grovvy3" 输出: > println("hellof grovvy"); > println("hellof grovvy2") > println "he 阅读全文
posted @ 2024-04-08 22:16 chuangzhou 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 目录JSR223JMeter 常用内置变量varsprevctxsample修改请求体数据添加请求头数据删除请求头ctxCookieManage 和 HeaderManager断言官方资料 JSR223 JSR: Java Specification Requests的缩写,意思是Java规范提案, 阅读全文
posted @ 2024-04-07 16:24 chuangzhou 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 目录构造 json 对象转JSON字符串时保留nullJSON串 转换为 map 及 JSONObject 构造 json 对象 需求:构造以下请求体 { "attrSelectionVO": [ { "attrAccessId": "eea99a0894504a2b89f3cfeb4be051d3 阅读全文
posted @ 2024-04-05 09:58 chuangzhou 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 默认情况下,Python 把各个实例的属性存储在一个名为__dict__ 的字典中。字典消耗的内存很多--即使有一些优化措施。但是,如果定义一个名为__slots__的类属性,以序列的形式存储属性名称,那么Python 将使用其他模型存存储实例属性:__slots__ 中的 属性名称储存在一个隐藏的 阅读全文
posted @ 2024-03-30 20:43 chuangzhou 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 报错: java.sql.BatchUpdateException: Date truncation: Out of range value for column xxxxx 原因: xxx 列 ddl 中为 stock_num(12,2) 数据库值为0.06 需要更新为:0.06 - 0.21 就 阅读全文
posted @ 2024-03-29 12:22 chuangzhou 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 接口间依赖性问题 1.上一个接口未返回值,下一个接口就发起请求。导致漏传参数,接口直接报错 解决办法:前端加了遮罩的效果,如果接口未返回,前端无法进行下一步操作 阅读全文
posted @ 2024-03-28 17:07 chuangzhou 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 需求背景:为 python 脚本定义参数信息,从命令行获取脚本运行时传入的参数及订单号 import argparse import sys def parse_arg(cmd_parame): parse = argparse.ArgumentParser(description='this is 阅读全文
posted @ 2024-03-21 22:56 chuangzhou 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/testcs_dn/article/details/84833920/?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_baidulandingword~default-1- 阅读全文
posted @ 2024-03-16 11:08 chuangzhou 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 41 下一页