<dependency> <groupId>com.vdurmont</groupId> <artifactId>emoji-java</artifactId> <version>5.1.1</version> </dependency> package com.jeeplus.modules.ff ...
分类:
编程语言 时间:
2020-07-29 10:24:54
阅读次数:
61
1. 前言 在《还不清楚怎样面向对象?》和《面向对象再探究》两篇文章中,都介绍了关于面向对象程序设计的概念和特点。其中也涉及到了许多代码,比如: Dog dog = new Dog(); 这篇文章就主要来谈谈创建对象时的具体操作。 2. 引入例子 下面是一个Dog类: /** * @author X ...
分类:
编程语言 时间:
2020-07-28 17:28:04
阅读次数:
93
Zookeeper的增删改查 package top.campsis.zk; import org.I0Itec.zkclient.ZkClient; /** * @ClassName: TestCURD * @Author: campsis-tk * @Date: 2020/7/27 21:10 ...
分类:
编程语言 时间:
2020-07-28 00:21:38
阅读次数:
74
1 /** 2 * @author liuwenlong 3 * @create 2020-07-24 15:00:39 4 */ 5 @SuppressWarnings("all") 6 public class TestRunTime { 7 public static String exeCm ...
分类:
其他好文 时间:
2020-07-27 23:57:30
阅读次数:
158
发送请求是跳过证书 package com.yurun.micro.common.third.ding; import okhttp3.OkHttpClient; import javax.net.ssl.*; /** * okhttp ssl证书解决 * @author dll * @create ...
分类:
编程语言 时间:
2020-07-27 15:48:27
阅读次数:
80
# -*- coding: utf-8 -*- # @Time : 2020/7/26 14:13 # @Author : Breeze # @FileName: 购物车程序.py product_list = [ ("Mac",9000), ("kindle",800), ("tesla",900 ...
分类:
其他好文 时间:
2020-07-27 15:36:49
阅读次数:
63
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:
其他好文 时间:
2020-07-27 15:35:26
阅读次数:
67
# -*- coding: utf-8 -*- # @Time : 2020/7/25 13:59 # @Author : Breeze num1 = 1 while num1 <= 9: num2 = 1 while num2 <= num1: print("{}*{}={}".format(nu ...
分类:
其他好文 时间:
2020-07-27 15:35:12
阅读次数:
53
# -*- coding: utf-8 -*- # @Time : 2020/7/25 14:09 # @Author : Breeze # @FileName: 字符格式化输出.py name = input("Name:") age = int(input("Age:")) job = inpu ...
分类:
其他好文 时间:
2020-07-27 15:34:29
阅读次数:
60
@author: 庄壮壮 1. 下载FUSE并安装 下载地址:https://osxfuse.github.io/ 2. 安装brew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew. ...
分类:
Web程序 时间:
2020-07-27 13:57:21
阅读次数:
279