摘要: public class Person { String name; int age; // 构造器 public Person() { } public Person(String name){ this.name=name; } public Person(String name,int age 阅读全文
posted @ 2022-12-10 23:16 ZLey 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 值传递: 1 public class Demo01 { 2 public static void main(String[] args) { 3 int a=10; 4 System.out.println(a); 5 Demo01.change1(a); //调用函数改变a的值结果仍然不变 6 阅读全文
posted @ 2022-12-09 16:54 ZLey 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 配置过程: 1、首先在pycharm命令行中下载virtualenv,pip install virtualenv 2、创建虚拟环境 virtualenv 虚拟环境名称,例如:virtualenv online-cl 遇到问题online-cl下没有bin文件夹 解决:# mac,linux 环境 阅读全文
posted @ 2022-11-06 20:29 ZLey 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Linux上配置Github上git clone的python项目 阅读全文
posted @ 2022-11-05 15:25 ZLey 阅读(361) 评论(0) 推荐(0) 编辑
摘要: Hello ZLey! 阅读全文
posted @ 2022-10-31 20:36 ZLey 阅读(9) 评论(0) 推荐(0) 编辑