相关文章
idea cannot download sources 解决方法
问题
点击class文件右上角下载源码失败
解决方案
找到idea terminal 控制台cd 至maven工程执行 mvn dependency:resolve -Dclassifiersources
编程日记
2025/1/23 13:10:14
《起风了》C++源代码
使用方法
Visual Studio、Dev-C、Visual Studio Code等C/C创建一个 .cpp 文件,直接粘贴赋值即可。
#include <iostream>
#include <Windows.h>
#pragma comment(lib,"winmm.lib")
using namespace std;
enum Scale
{Rest 0, C8 108, B7 …
编程日记
2025/1/23 2:35:19
Mac os 上的apt-get install 就是brew install
Mac os 上面不支持apt-get install ,但是有个 brew install可以代替。
Homebrew是Mac OS的包管理器,可以方便地安装各种需要的软件。
1.1 安装Homebrew
如果没有安装Homebrew,需要在终端输入以下命令进行安装:
/usr/bin/ruby -e "$(…
编程日记
2025/1/23 4:56:48
【设计模式】适配器模式
适配器模式(Adapter Pattern)是作为两个不兼容的接口之间的桥梁。这种类型的设计模式属于结构型模式,它结合了两个独立接口的功能。
这种模式涉及到一个单一的类,该类负责加入独立的或不兼容的接口功能。举个真实的例子ÿ…
编程日记
2025/1/23 5:00:23
Zookeeper进阶篇 - Paxos协议算法、ZBA协议算法原理、Leader选举原理
Zookeeper底层原理篇,让学习绚丽多彩起来!!!
编程日记
2025/1/23 4:50:00
spring boot 整合mongodb
1、安装依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-mongodb</artifactId></dependency>2、配置数据库连接
spring:data:mongodb:host: localhostport: 27017username: xxxxxxp…
编程日记
2025/1/21 23:05:45
vue 发现页面找不到3秒后跳转到本页面
这个路由跳转用到的是编程式跳转this.$router.push 两种写法: 第一种可以通过path来跳转 goto(/find) find是路由里边的路径
<span click"goto(/find)">发现音乐</span>
<span click"goto(/my)">我的音乐</span>
<…
编程日记
2025/1/22 16:05:34