码迷,mamicode.com
首页 >  
搜索关键字:@class    ( 183544个结果
Codeforces Round #725 (Div. 3) G题解
G. Gift Set 题意: 给4个数x,y,a,b 每次可以进行2个操作 操作1 如果 x >= a , y >= b , x -= a , y -= b ; 操作2 如果 x >= b , y >= a , x -= b , y -= a ; 问最多可以进行多少次操作 (1≤x,y,a,b≤1 ...
分类:其他好文   时间:2021-06-16 17:56:42    阅读次数:0
pymysql模块
支持通过python操作mysql的第三方库 安装pymysql模块,点击“终端’输入 pip3 install pymsql 导入模块 import pymysql ...
分类:数据库   时间:2021-06-16 17:56:08    阅读次数:0
JDK8 - 构造器引用
demo1: public class ConstructorRefTest { public static void main(String[] args) { // lambda Supplier<Person> supplier = ()-> new Person(); // 构造器引用 Su ...
分类:其他好文   时间:2021-06-16 17:50:19    阅读次数:0
5.撤回/重做功能实现简略
实现思路: 把每次动作/事件压栈或者弹出。 直接代码 class LoadCommand :public QUndoCommand { private: XXModel * xModel; int old; int new; QWidget* mWins; public: LoadICommand( ...
分类:其他好文   时间:2021-06-16 17:48:29    阅读次数:0
2.原理初探
//程序的主入口,不能删也不能改 @SpringBootApplication//标注是一个springBoot的应用 public class DemoApplication { //将springBoot应用启动 public static void main(String[] args) { ...
分类:其他好文   时间:2021-06-16 17:46:34    阅读次数:0
leetcode 1518. 换酒问题
小区便利店正在促销,用 numExchange 个空酒瓶可以兑换一瓶新酒。你购入了 numBottles 瓶酒。 如果喝掉了酒瓶中的酒,那么酒瓶就会变成空的。 请你计算 最多 能喝到多少瓶酒。 示例 1: 输入:numBottles = 9, numExchange = 3输出:13解释:你可以用 ...
分类:其他好文   时间:2021-06-16 17:44:39    阅读次数:0
selenium IDE自动化脚本录制
一、简介 他作为firefox浏览器的一个插件存在,依附于firefox浏览器,打开它的录制功能,它会记录你对firefox的操作,并可以回放它所记录的你的操作。类似于QTP的自动录制功能. 二、安装 # 方法一 1.打开firefox 浏览器,进入官方网址:http://seleniumhq.or ...
分类:其他好文   时间:2021-06-16 17:39:22    阅读次数:0
Java零基础学习(ArrayList Vector LinkedList 泛型 可变参数 增强for循环)
Java零基础学习(ArrayList Vector LinkedList 泛型 可变参数 增强for循环) ArrayList存储字符串并遍历 1.将集合转化为数组遍历 public class MyTest { public static void main(String[] args) { A ...
分类:编程语言   时间:2021-06-16 17:34:44    阅读次数:0
springcloud 使用feign
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:编程语言   时间:2021-06-16 17:34:00    阅读次数:0
爬虫-BeautifulSoup4
之前我们是用lxml来提取数据,今天我们来学习一下bs4 在学习之前呢我们需要先来安装一下包 pip install bs4 我们用到的例子还是上节课的text内容 text = \ """ <ul class="ullist" padding="1" spacing="1"> <li> <div ...
分类:其他好文   时间:2021-06-16 17:32:19    阅读次数:0
183544条   上一页 1 ... 37 38 39 40 41 ... 18355 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!