码迷,mamicode.com
首页 >  
搜索关键字:data uri    ( 69870个结果
Java面向对象
this关键字 this关键字的作用: @Data public class jtest { private String name; public jtest(){ //调用构造方法,只能在构造方法中使用,且必须是第一行 this("dwx"); } public jtest(String nam ...
分类:编程语言   时间:2021-04-20 15:11:01    阅读次数:0
读者-写者问题
1 typedef int semaphore; 2 semaphore count_mutex = 1; 3 semaphore data_mutex = 1; 4 int count = 0; 5 6 void reader(){ 7 while(TRUE){ 8 down(&count_mut ...
分类:其他好文   时间:2021-04-20 15:08:36    阅读次数:0
拥抱变化,全新的WinUI
Capability/feature WinUI 3 UWP XAML & WinUI 2 WPF WinForms MFC Windows app types supported UWP (Preview) and Win32 UWP Win32 Win32 Win32 Windows versi ...
分类:Windows程序   时间:2021-04-20 15:08:20    阅读次数:0
ES 常用语句增删改查
快速查看ES集群状态 GET _cluster/health { "cluster_name": "elasticsearch", "status": "yellow", "timed_out": false, "number_of_nodes": 1, "number_of_data_nodes" ...
分类:其他好文   时间:2021-04-20 14:54:42    阅读次数:0
axios的使用
1.npm安装:npm install axios 2.axios发送请求后返回的是一个promise 3.axios发送get请求: import axios from 'axios'; axios.get('http://localhost:8080/getData?username=abc&i ...
分类:移动开发   时间:2021-04-20 14:53:50    阅读次数:0
Vue学习
Vue.js基本语法 第一个Vue程序 <div id="app"> {{ message }} </div> var app = new Vue({ el: '#app', //绑定挂载点 data: { message: 'Hello Vue!' } }) el绑定的作用实例范围是什么 el绑定 ...
分类:其他好文   时间:2021-04-20 14:38:41    阅读次数:0
贪心算法之背包问题
类别:1)0-1背包;2)分数背包 0-1背包使用贪心算法无法获得最优解 分数背包代码如下: def fractional_package(goods, w): """ :param data: [(价值,重量),...] :param w: 要拿取的总重量 :return:(拿走的数量,拿走的总价 ...
分类:编程语言   时间:2021-04-20 14:28:39    阅读次数:0
R语言中将数据框中的连续型变量转变为类别型变量
1、 dat <- data.frame(v1=sample(1:15,15),v2=sample(1:15,15)) dat$cat[dat$v1 <= 8] <- "SMALL" dat$cat[dat$v1 > 8 ] <- "BIG" 2、 dat <- data.frame(v1=samp ...
分类:编程语言   时间:2021-04-20 14:08:55    阅读次数:0
毕设-element ui + springboot + mybatis 单条件查询模板
前端 html <!-- 搜索 --> <div style="margin-top: 15px"> <el-select style="width: 150px" v-model="select" placeholder="请选择"> <el-option label="歌手列表" value=" ...
分类:编程语言   时间:2021-04-20 14:07:21    阅读次数:0
R语言中求数据框的每一列值的最大值、最小值、平均数、中位数、方差、标准差
R语言中求数据框每一列的最大值、最小值、平均数、中位数、方差和标准差 1、 d <- data.frame(v1=sample(1:10,6),v2=sample(1:10,6),v3=sample(1:10,6), v4=sample(1:10,6)) rmax <- vector() rmin ...
分类:编程语言   时间:2021-04-20 14:01:50    阅读次数:0
69870条   上一页 1 ... 52 53 54 55 56 ... 6987 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!