cat electric_car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 from car import Car 5 6 class Battery(object): 7 """ 8 模拟电瓶 9 """ 10 def __init_ ...
分类:
其他好文 时间:
2021-02-19 13:19:52
阅读次数:
0
GitHub和git的相关操作 初始化一个git仓库 将当前文件夹作为git仓库 git init 或者将当前文件夹下的xxx文件夹作为git仓库 git init xxx 初始化后会出现一个名为.git的隐藏文件夹 添加远程仓库GitHub 给远程仓库git@github.com:phd99/te ...
分类:
其他好文 时间:
2021-02-19 12:55:07
阅读次数:
0
关键词 spring Java eclipse bean 多例模式 prototype 懒加载 lazy-init 写在前面 功能简述:对于多例模式的懒加载配置是否生效的测试。 刚接触,摸索中,低级错误,只是做个记录,轻喷。 (有错误)Xml配置文件(片段) <?xml version="1.0" ...
分类:
其他好文 时间:
2021-02-18 13:55:34
阅读次数:
0
官方文档:https://www.tslang.cn/docs/handbook/react-&-webpack.html 前提准备 项目结构 demo/ ├─ dist/ └─ src/ └─ components/ 初始化 npm init 安装依赖 npm install -g webpack ...
分类:
Web程序 时间:
2021-02-18 13:04:23
阅读次数:
0
组合数学 方法一:预处理 + 递推 \(C_a^b = C_{a-1}^b + C_{a-1}^{b-1}\) 时间复杂度:O(\(n^2\)) #include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; const ...
分类:
其他好文 时间:
2021-02-17 14:54:06
阅读次数:
0
npm init -y npm i express mongoose ejs npm i method-override nodemon app.js nodemon seeds/index.js models/campgrounds.js const mongoose = require('mon ...
分类:
其他好文 时间:
2021-02-16 12:42:42
阅读次数:
0
问题描述 在执行 Groovy 代码中,产生如下错误: ava.lang.NoSuchMethodError: com.lispstudio.model.TeamLispstudio: method <init>()V not found 问题原因 在继承父类之后,没调用父类的构造函数。 解决方法 ...
分类:
编程语言 时间:
2021-02-16 12:16:16
阅读次数:
0
考虑到不知道第$104$个素数有多大,可以先用程序测试下第$104$个素数是多少。 const int N=2e5+10; int primes[N],cnt; bool vis[N]; void init(int n) { for(int i=2;i<=n;i++) if(!vis[i]) { p ...
分类:
其他好文 时间:
2021-02-16 12:14:01
阅读次数:
0
import requests import re import os import json import time as t class QQmusic(): """代码仅供学习""" def __init__(self): """初始化""" self.headers = { 'Accept- ...
分类:
其他好文 时间:
2021-02-15 12:44:00
阅读次数:
0
实现前缀树 知识点 Trie (发音为 "try") 或前缀树是一种树数据结构,用于检索字符串数据集中的键。 常见的应用场景有: 自动补全 拼写检查 IP路由(最长前缀匹配) 打字预测 示例 实现 Trie (前缀树) class TrieNode { private final int R = 2 ...
分类:
其他好文 时间:
2021-02-15 12:42:37
阅读次数:
0