自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 Uipath打包流程为.nupkg文件

先断开oc 在publish流程,其中main是入口 点击publish 然后打开Uipath robot,可以看到流程已经同步上去了

2020-07-21 17:10:12 3396 1

原创 TortoiseGit下载与安装

**下载地址:**https://tortoisegit.org/download/ 下载TortoiseGit及汉化包: 安装 设置安装的路径 TortoiseGit安装完成 重启电脑,安装汉化包

2019-10-19 13:18:51 387

原创 创建本地仓库,关联远程仓库

新建文件夹,右键 选择Git Bash 生成ssh and GPG keys $ ssh-keygen -t rsa -C “youremail@example.com” # 配置GitHub ==> Settings ==> SSH and GPG keys(~/.ssh/id_rsa.pub) #初始化 $ git init #git配置,填写git用户名和邮箱地址 $ git...

2019-10-19 12:48:31 197

原创 类的加载机制

示例代码: public class Beetle extends Insect{ private int k=printInit(“Beetle.k initialized”); public Beetle(){ System.out.println("k = "+k); System.out.println("j = "+j); } private static int x2=printIni...

2019-09-30 22:22:47 135

原创 构造器的初始化

案例一: //构造器的初始化 public class OrderInitial { public static void main(String[] args) { //new对象时,先执行构造器,按顺序执行 House h = new House(); h.f(); } } class window{ window(int market){ System.out.println(“window...

2019-09-22 10:43:08 196

原创 this关键字的运用

1、将当前对象的引用传递给另外的类 //this:把对当前对象的引用传递给另外的类 public class TestThis { public static void main(String[] args) { new Person().eat(new Apple()); } //人 static class Person{ public void eat(Apple apple){ Apple...

2019-09-21 15:55:23 106

原创 基本类型的方法重载问题

/当存在一个方法,其形参类型与传入的实参类型一致时,则直接调用该方法; 不一致时,则调用形参类型更大的方法.即从小类型可以直接调用大类型/ public class TestOverLoading { public static void main(String[] args) { TestOverLoading test = new TestOverLoading(); test.testInt...

2019-09-21 14:53:34 229

原创 String与==和equals

public class Operator { public static void main(String[] args) { Operator operator = new Operator(); operator.enqualMethod(); } //字符串比较使用“” /** * String s1=“who are you”; * 创建字符串对象s1时,内存会从常量池查找该字符串。如果...

2019-09-17 23:30:47 161

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除