- 博客(60)
- 收藏
- 关注
原创 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): Mybatis.mapper
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): Mybatis.mapper.UserMapper.deleteUserById
2022-11-09 13:33:55
308
原创 普歌-git fetch 和 git pull的区别
git fetch 和 git pull的区别区别:git fetch :从远程获取最新到本地,不会自动mergrgit pull : 从远程获取最新到本地并自动mergrgit fetch 命令用于远程获取代码库执行完该命令后需要git merge 远程分支到你所在的分支到自己所在的任意分支配置好了一个远程仓库,并且需要提取更新的数据,可以执行:git fetch [mikecat]git pull从远程获取代码并合并到本地git pull [远程主机名] [远程分支名]:[本地
2022-05-11 08:15:21
99
原创 普歌-最大子数组和
最大子数组和给你一个整数数组 nums ,请你找出一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。子数组 是数组中的一个连续部分。输入:nums = [-2,1,-3,4,-1,2,1,-5,4]输出:6解释:连续子数组 [4,-1,2,1] 的和最大,为 6 。
2022-04-30 09:33:53
853
原创 普歌-nohup: /Library/Internet: No such file or directory。Nacos 启动但不可以访问
nohup: /Library/Internet: No such file or directory。Nacos 启动但不可以访问
2022-04-01 21:27:43
2562
1
原创 普歌-Web server failed to start. Port 8001 was already in use.
Web server failed to start. Port 8001 was already in use.Action:Identify and stop the process that's listening on port 8001 or configure this application to listen on another port.
2021-12-05 10:57:05
669
原创 普歌-nginx error: ‘struct crypt_data’ has no member named ‘current_salt’ 35 | cd.cu
error: ‘struct crypt_data’ has no member named ‘current_salt’ 35 | cd.cu
2021-11-20 12:10:58
2734
原创 普歌-安装nginx中error: this statement may fall through [-Werror=implicit-fallthrough=]
nginx中error: this statement may fall through [-Werror=implicit-fallthrough=]
2021-11-20 11:40:50
2227
原创 java验证图片
import java.awt.Container;import java.awt.Font;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.ArrayList;import java.util.List;import java.util.Random;import javax.swing.*;public class Cap12306 extends JFrame
2021-10-31 14:32:13
449
原创 普歌-阿里云获取OSS的AccessKeyId和AccessKeySecret
阿里云获取OSS的AccessKeyId和AccessKeySecret
2021-09-25 09:31:39
1113
原创 普歌-class path resource [applicationContext.xml] cannot be opened because it does not exist
class path resource [applicationContext.xml] cannot be opened because it does not exist
2021-07-20 17:03:25
310
原创 普歌-允异团队-手写HashMap
Mappublic interface Map<K,V> { V put(K k,V v); V get(K k); int size(); interface Entry<K,V>{ K getKey(); V getValue(); }}HashMappublic class HashMap<K,V> implements Map<K,V>{ private E
2021-04-10 20:42:41
194
1
原创 普歌-允异团队-HashMap面试题(续)
1.HashMap扩容流程?HashMap的扩容指的就是数组的扩容, 因为数组占用的是连续内存空间,所以数组的扩容只能新开一个新的数组,然后把老数组上的元素转移到新数组上来在HashMap中也是一样,先新建一个2倍数组大小的数组然后遍历老数组上的每一个位置,如果这个位置上是一个链表,就把这个链表上的元素转移到新数组上去在这个过程中就需要遍历链表,jdk7和jdk8在这个实现时是有不一样的jdk7就是简单的遍历链表上的每一个元素,然后按每个元素的hashcode结合新数组的长度重新计算得出一
2021-04-10 11:01:05
117
原创 普歌-允异团队-HashMap面试题
HashMap1.hashMap 工作原理HashMap是基于hashing的原理,使用put(key, value)存储对象到HashMap中,使用get(key)从HashMap中获取对象。put()方法传递键和值时,我们先对键调用hashCode()方法,返回的hashCode用于找到bucket位置来储存Entry对象。HashMap是在bucket中储存键对象和值对象,作为Map.Entry。哈希冲突原因key计算出一个hashcode,hashcode与“操作”计算出数组下
2021-04-10 10:56:50
130
2
原创 java面试题
HashMap底层实现原理来自 https://blog.youkuaiyun.com/kun_998/article/details/89480637?ops_request_misc=%7B%22request%5Fid%22%3A%22161629263516780265456725%22%2C%22scm%22%3A%2220140713.130102334..%22%7D&request_id=161629263516780265456725&biz_id=0&utm_medium=
2021-03-31 21:15:30
593
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人