排序
A quick look at Java 11’s HttpClient
A quick look at Java 11's HttpClient,This article was originally posted on my blog Java 11 was released in September 2018 and is the first Long-Term-Support version after Java 8. O...
Useful stream utilities not found in Java
Useful stream utilities not found in Java,Photo by Karan Chawla on Unsplash A bit of context The standard Java library makes a reasonable attempt to provide useful utility methods ...
Spring Security with JWT
Spring Security with JWT,Spring Security’s default behavior is easy to use for a standard web application. It uses cookie-based authentication and sessions. Also, it automatically...
Java Data Structures
Java Data Structures, Interface List Exist two most used implementation of this interface it is ArrayList and LinkedList. Let's go deeper about each ArrayList From the name of this...
Kotlin: How Can a Programming Language be so Young And so Mature at The Same Time?
Kotlin: How Can a Programming Language be so Young And so Mature at The Same Time?,In this article, we’re going to explore why young programming languages with modern features can...
Better Null-Checking in Java
Better Null-Checking in Java,Photo by Estée Janssens on Unsplash Java runs some of the largest sites and platforms in the world but I’ve often struggled with its design as a lang...
Leetcode : 905. Sort Array By Parity
Leetcode : 905. Sort Array By Parity,https://www.youtube.com/watch?v=0spKOOqBpZ0 原文链接:Leetcode : 905. Sort Array By Parity
A deep, deep dive into Java debugging
A deep, deep dive into Java debugging,This is the story of a Java debugging journey that started with a question I couldn't answer about Java stack traces. As a long time Java prog...
Java Structure
Java Structure,Java is programming language with static typization. Which means that programmer need declare type and name of the variables. After it made we may use it. int wheels...
A Brief View of Java Constructors
A Brief View of Java Constructors,Introduction Java is one of the emerging and on-demand technologies in the current scenario. Being the most secure and reliable and having huge fe...
Learning Algorithms with JS, Python and Java #11: Count the Vowels
Learning Algorithms with JS, Python and Java #11: Count the Vowels,This series of articles follows Stephen Grider's Udemy course in three different languages. Today's question is a...
Concepts-as-Code: Bubble Sort
Concepts-as-Code: Bubble Sort,Hi there! This ‘Concepts-as-Code’ blog post is the first in a series where I will attempt to explain concepts in Computer Science in the simplest wa...