Git Product home page Git Product logo

Comments (16)

Guanzhou-Ke avatar Guanzhou-Ke commented on May 17, 2024 6

spring系列可能分拣出来比较好点,可以增加容器的相关知识点,tomcat jetty这些。

from javaguide.

aiengelangte avatar aiengelangte commented on May 17, 2024 1

厉害了

from javaguide.

Snailclimb avatar Snailclimb commented on May 17, 2024 1

后续会考虑增加Tomcat相关知识以及考虑主流框架部分的完善,最近可能没时间。

from javaguide.

YunaiV avatar YunaiV commented on May 17, 2024

你好。我是芋道源码的博主。请问可以转载你的文章么?

from javaguide.

lukesama avatar lukesama commented on May 17, 2024

能麻烦加一下进程间通讯方式之类的文章嘛

from javaguide.

Snailclimb avatar Snailclimb commented on May 17, 2024

@lukesama 不好意思 目前可能没有时间添加,这段时间忙玩之后会考虑添加操作系统方面的知识。嘿嘿 ,你也可以将这些知识总结出来然后给我PR啊!

from javaguide.

2251999759 avatar 2251999759 commented on May 17, 2024

好厉害,可以跟着大佬一块学习吗?

from javaguide.

Snailclimb avatar Snailclimb commented on May 17, 2024

欢迎一起学习交流 @2251999759

from javaguide.

im-Luxqi avatar im-Luxqi commented on May 17, 2024

非常厉害

from javaguide.

thangl3 avatar thangl3 commented on May 17, 2024

I hope it has version English

from javaguide.

jounghu avatar jounghu commented on May 17, 2024

HashMap 长度是2的幂次方,文档写的有误

hashmap

HashMap的长度在初始化的时候定义为:

hashmap2

tableSizeFor() 会把将cap容量扰动为2的幂次方

 /**
     * Returns a power of two size for the given target capacity.
     */
    static final int tableSizeFor(int cap) {
        int n = cap - 1;
        n |= n >>> 1;
        n |= n >>> 2;
        n |= n >>> 4;
        n |= n >>> 8;
        n |= n >>> 16;
        return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
    }

希望改进

from javaguide.

yzsunlight avatar yzsunlight commented on May 17, 2024

建议你整体可以 从入门到基础到深入, 建议书单更加完善

from javaguide.

Snailclimb avatar Snailclimb commented on May 17, 2024

@jounghu 你好!HashMap 用你说的那个函数初始化的时候,如果你给的容量不是2的幂次方 的会把 容量默认变为 2的幂次方。但是这不是 HashMap 长度是2的幂次方的原因。

from javaguide.

jounghu avatar jounghu commented on May 17, 2024

@Snailclimb 那请问原因是什么?

from javaguide.

MutualExclusion avatar MutualExclusion commented on May 17, 2024

如何在这个项目中添加图片,毕竟人对于图片的理解远远要超过对文字理解的速度

from javaguide.

YangYangDai avatar YangYangDai commented on May 17, 2024

java只有值传递 基本数据类型是值传递 引用类型是引用类型的值(内存地址的值)传递

from javaguide.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.