GitHugo 修整问题

fatal: not a git repository (or any of the parent directories): .

Encryption-Decryption

Description Modify the previous program to work with command-line arguments instead of the standard input.

Comparable and Comparator interface

callicoder Comparable –> compareTo() import java.util.Objects; class Employee implements Comparable<Employee> { private int id; private String name; private double salary; private LocalDate joiningDate; public Employee(int id, String name, double salary, LocalDate joiningDate) { this.

HashMap

Rajeev Singh' blog Creating a HashMap and Adding key-value pairs to it

Using Git in the Real Life for Beginners 4

Conflict, mistake, lose files, those things happen, which I used to google the answer to solving, then forgot how to deal with it the next time. So know fundamental knowledge would help you better calm down, don’t get frustrated.

Using Git in the Real Life for Beginners 3

branch is the basic in the real-life work.

Using Git in the Real Life for Beginners 2

Here I am going to focus on git stash, very useful commend.

java中的instanceof和isInstance

我对 instanceof 和 isInstance 太困惑了,现在来理一下。 interface A { } class B{ } class C implements A { } class D implements B { } public class Solution { public static void main(String[] args) { C s1 = new C(); D s2 = new S(); //孩子是不是父辈,祖辈的啊?要站在一起才能看到 System.

Decrypted!

Description In this stage, you need to support decryption in your program.

Using Git in the Real Life for Beginners 1

This tutorial is for newbies who want to learn git in real life and easy way. 此篇教程献给学了点线面没学骨架的我,另外我学习的逻辑其实是骨架到面线点。