打赏

相关文章

【mongoose】mongoose 基本使用

1. 连接数据库 // 1. 安装 mongoose // 2. 导入 mongoose const mongoose require(mongoose) // 3. 连接 mongodb 服务 mongoose.connect(mongodb://127.0.0.1:27017/xx_project) // 4. 设置回调 .on 一直重复连接 .once 只连接一次 mongoose.connection.on(open, () >…

DAY45 70. 爬楼梯 + 322. 零钱兑换 + 279.完全平方数

70. 爬楼梯 题目要求&#xff1a;假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢&#xff1f; 爬楼梯的dp版本&#xff0c;完全背包。 class Solution { public:int climbStairs(int n) {vector<int>…

Scala语言用Selenium库写一个爬虫模版

首先&#xff0c;我将使用Scala编写一个使用Selenium库下载yuanfudao内容的下载器程序。 然后我们需要在项目的build.sbt文件中添加selenium的依赖项。以下是添加Selenium依赖项的代码&#xff1a; libraryDependencies "org.openqa.selenium" % "selenium-ja…

切换win11 账户后,git报错

问题场景&#xff1a; 切换win11 账户后&#xff0c;git报错 git pull 报错&#xff1a; fatal: detected dubious ownership in repository at D:xxxxx D:/0xxxxxx is owned by: xxxxxxxxxxxxxxxxx but the current user is: xxxxxxxxxxxxxxxxxx To add an exception for this…

BigDecimal类型使用注意事项

BigDecimal类型使用是非常常见的&#xff0c;今天我们分享一下&#xff1a; 1、加 BigDecimal result num.add(n); 2、减 BigDecimal result num.subtract(n); 3、乘 BigDecimal result num.multiply(nu); 4、除 BigDecimal result num.divide(n,4,BigDecimal.ROUN…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部