Javaᶜⁿ 面试突击
首页
  • Java 基础
  • 并发
  • 网络
  • MySQL
  • Redis
  • Spring 全家桶
  • MyBatis
  • JVM
  • 消息队列
  • Spring Cloud
  • 手撕代码题
  • 其他
企业真题和答案🆕
🔥更多面试题🔥
哔哩哔哩 open in new window
关于我
首页
  • Java 基础
  • 并发
  • 网络
  • MySQL
  • Redis
  • Spring 全家桶
  • MyBatis
  • JVM
  • 消息队列
  • Spring Cloud
  • 手撕代码题
  • 其他
企业真题和答案🆕
🔥更多面试题🔥
哔哩哔哩 open in new window
关于我
  • Java 基础
    • 什么是方法重载?返回值算重载吗?
    • 说一下多态的实现原理?
    • ArrayList和LinkedList有什么区别?
    • ArrayList和Vector有什么区别?
    • 抽象类和普通类有什么区别?
    • 抽象类和接口有什么区别?
    • HashMap和Hashtable有什么区别?
    • HashMap和HashSet有什么区别?
    • 什么是负载因子?为什么是0.75?
    • HashMap底层是如何实现的?
    • 为什么HashMap会死循环?
    • 哈希冲突的解决方案有哪些?
    • 什么是反射?使用场景有哪些?
    • 浅克隆和深克隆有什么区别?
    • 说一下Java内存模型?
  • 并发
    • hashmap-thread.md
    • hashmap-concurrent.md
    • hashmap-null.md
    • thread-process.md
    • wait.md
    • thread-communication.md
    • thread-stop.md
    • threadpool.md
    • threadpool-params.md
    • threadpool-execution.md
    • threadpool-stop.md
    • threadpool_executed.md
    • volatile.md
    • volatile-impl.md
    • volatile-singleton.md
    • thread-safe.md
    • synchronized-lock.md
    • synchronized-impl.md
    • synchronized-upgrade.md
    • deadlock.md
    • cas.md
    • aba.md
    • aqs.md
  • 网络
    • tcpip.md
    • protocol.md
    • dns-execute.md
    • urlexecute.md
    • getvspost.md
    • forward.md
    • tcp3.md
    • tcp4.md
    • tcpvsudp.md
    • httpcode.md
    • https.md
    • httpsexecute.md
  • MySQL
    • mysqlvsnosql.md
    • mysqlstipulate.md
    • mysqlengine.md
    • myisamvsinnodb.md
    • mysqlindex.md
    • leftmatch.md
    • indeximpl.md
    • clusterindex.md
    • indexinvalid.md
    • transaction-characteristic.md
    • transaction-isolation-level.md
    • non-repeatableread.md
    • rr_mvcc.md
    • row-lock.md
    • mvcc.md
    • consistency.md
    • slowsql.md
    • optimize.md
  • Redis
    • quick.md
    • function.md
    • types.md
    • zset.md
    • skiplist.md
    • mq.md
    • redis_lock.md
    • redis_data.md
    • rdb_aof.md
    • redis_expire.md
    • redis_expire_detail.md
    • redis_memory.md
    • memory_out.md
    • lru_lfu.md
    • cache_avalanche.md
    • cache_penetration.md
    • cache_breakdown.md
    • avalanche_breakdown.md
    • cluster.md
    • redis_optimize.md
  • Spring 全家桶
    • spring.md
    • ioc.md
    • di_dl.md
    • ioc_di.md
    • di.md
    • aop.md
    • aop_tech.md
    • proxy.md
    • jdk_cglib.md
    • scope.md
    • singleton_threadsafe.md
    • inject.md
    • autowired.md
    • autowired_resource.md
    • bean_lifecycle.md
    • beanfactory_factorybean.md
    • design_pattern.md
    • spring_springboot.md
    • springboot_advantage.md
    • springboot_autowired.md
    • getrequest.md
    • interceptor.md
    • filter.md
    • interceptor_filter.md
    • interceptor_proxy.md
    • springboot_transaction.md
    • propagation.md
    • required_nested.md
    • cross.md
    • source-code.md
  • MyBatis
    • mybatis.md
    • mybatis_hibernate.md
    • mybatis_process.md
    • mybatis_dollar.md
    • sql_injection.md
    • dynamicsql.md
    • mybatis_cache.md
    • mybatis_design.md
  • JVM
    • jvm.md
    • classloader.md
    • loader.md
    • delegation.md
    • memory.md
    • heap_stack.md
    • method.md
    • meta.md
    • oom.md
    • gc.md
    • gc_roots.md
    • gc_algorithm.md
    • gc_collector.md
    • full_gc.md
    • zgc.md
  • 消息队列
    • delay.md
  • Spring Cloud
    • sentinel-exception
    • gateway-limiting
    • distributed_lock
    • loadbalancer.md
    • limiting.md
    • demotion.md
    • 2pcvs3pc.md
    • sentinel_nacos.md
    • nacos_register.md
    • nacos_loadbalancer.md
    • source-code-2.md
    • gray.md
  • 手撕代码题
    • collect.md
    • weilai_thread.md
  • 其他
    • period
    • messup.md
    • resume.md
    • myself.md
    • prepare.md
    • repeat.md
    • offer_1.md
    • offer_2.md
    • nooffer.md
    • october.md
    • october2.md
    • manyoffer.md
    • 0offer.md
    • 0offer_2.md
    • fleecode.md
    • dimission.md
    • routine.md
    • guangzhou.md
    • autumn24vs23.md
    • salary24.md

# 目录

  1. 什么是方法重载?返回值算方法重载吗?
  2. 说一下多态的实现原理?
  3. ArrayList和LinkedList有什么区别?
  4. ArrayList和Vector有什么区别?
  5. 抽象类和普通类有什么区别?
  6. 抽象类和接口有什么区别?
  7. HashMap 和 Hashtable 有什么区别?
  8. HashMap 和 HashSet 有什么区别?
  9. 什么是负载因子?为什么是0.75?
  10. HashMap 底层是如何实现的?
  11. 为什么 HashMap 会死循环?
  12. 哈希冲突的解决方案有哪些?
  13. 什么是反射?它有什么用?
  14. 浅克隆和深克隆有什么区别?
  15. 说一下Java内存模型?

并发