最新发布第1239页
java学习笔记
java学习笔记,目录 第 1 章: Java 语言概述 1.1 Java 的历史与发展 略 1.2 Java 的特点 略 1.3 Java 的运行环境(JRE)和开发工具包(JDK) 略 1.4 第一个 Java 程序(Hello World 示例) 略 1....
什么是日志MDC?一句话简单解释MDC
什么是日志MDC?一句话简单解释MDC, 官方文档:Chapter 8: Mapped Diagnostic Context 为什么要写这篇文章呢?因为目前互联网上全是从官方文档里机器翻译然后转载的。但实际上我只是想知道什么...
Understanding Java Multithreading: Part 1
Understanding Java Multithreading: Part 1,In today’s software development landscape, the ability to run multiple tasks simultaneously is not just a luxury — it’s a necessity. Ja...
Explaining donut like 5 years old Part-3
Explaining donut like 5 years old Part-3,Now all that remains is what happens inside nested for-loop You might have seen that r1sin θ and r1cos θ These are used for making a circ...
AspNetCore全局异常处理
AspNetCore全局异常处理,在开发ASP.NET Core应用程序时,全局异常处理是一个重要的概念。它允许我们集中处理应用程序中未捕获的异常,确保应用程序的稳定性和用户体验。 1. 为什么需要全局异常...
Index Page: Starting my DSA journey
Index Page: Starting my DSA journey, Table of Content Intro Extras Leetcode patterns Intro Starting my DSA journey on this platform. I will blog about leetcode patterns and problem...
Explaining donut like 5 years old Part-4 (Last)
Explaining donut like 5 years old Part-4 (Last), The complete code for C is #include <math.h> #include <stdio.h> #include <string.h> #include <unistd.h> typ...
Amazon S3 概念及如何集成到 .net 8 C#
Amazon S3 概念及如何集成到 .net 8 C#,Amazon S3(Simple Storage Service)是一个高度可扩展、数据可用性高、安全性强的对象存储服务。 Amazon S3 使用对象存储架构,数据以对象的形式存储在...
Optimizing Docker Image Size for Java Applications: Multi-Stage Builds & JLink Explained
Optimizing Docker Image Size for Java Applications: Multi-Stage Builds & JLink Explained,Introduction: In the fast-paced world of application deployment, optimizing Docker images i...
JAVA中ScheduledExecutorService的使用方法
JAVA中ScheduledExecutorService的使用方法,ScheduledExecutorService 简介 ScheduledExecutorService是ExecutorService的一个子接口。它主要用于在给定的延迟之后或周期性地执行任务。这个接口...
【C++】static 知识整理 【静态与局部静态】
【C++】static 知识整理 【静态与局部静态】, 目录 类外 类内 局部静态 local static 类外 类内 类外 C++的静态可以分为两种情况来讨论:在类外和在类内。 对于静态变量/函数,链接将只在内部 ...
为什么你用的 MyBatis 慢?一行配置让它性能翻倍!
为什么你用的 MyBatis 慢?一行配置让它性能翻倍!,为什么你用的 MyBatis 慢?一行配置让它性能翻倍! 在 Java 后端开发的江湖里,MyBatis 堪称一员大将,凭借着灵活的 SQL 编写、方便的数据库...