ICode9

精准搜索请尝试: 精确搜索
  • C++格式标识和操纵器2022-02-20 23:30:19

    C++格式标识和操纵器 C++格式标识和操纵器 C++格式标识和操纵器 #include<iostream> using namespace std; int main() { ios_base::fmtflags old_val = cout.flags( ios_base::left | ios_base::hex |ios_base::uppercase | ios_base::showbase ); for( int i

  • C++Primer 第十五章 面向对象程序设计2022-02-20 18:00:29

    第十五章 面向对象程序设计 15.1 OOP:概述 面向对象程序设计核心思想: 数据抽象:将类的接口与实现分离 继承:可以定义相似的类 动态绑定:忽略相似类的区别,以统一的方式使用对象 继承 通过继承构建其一种层次关系。层次关系的根部是基类,其他由基类继承而来的类叫做派生类。基类定义层

  • 2.32 Safe-Linking 机制2022-02-20 15:35:09

    看 glibc 2.32 源码: /* Safe-Linking: Use randomness from ASLR (mmap_base) to protect single-linked lists of Fast-Bins and TCache. That is, mask the "next" pointers of the lists' chunks, and also perform allocation alignment checks o

  • SQL 去除数据库中的重复记录2022-02-20 05:05:48

    背景:存数据的时候多存了,导致数据重复 思路:group by 对重复的字段进行分组,重复意味着group by count的结果大于1,将count大于1的字段的最小id保留,其余删除 语句 delete from base_cell_extend where data_category =6 and data_key='device_num' and cgi in (select cgi from b

  • 【Java学习】-inheritance2022-02-19 23:35:18

    Inheritance doesn't just copy the interface of the base class. When you create an object of the derived class, it contains within it a subobject of the base class. This subobject is the same as if you had created an object of the base class by itself

  • 011 Big & Base 封闭类问题2022-02-19 23:04:48

    #include <iostream> #include <string> using namespace std; class Base { public: int k; Base(int n):k(n) { } }; class Big { public: int v; Base b; Big(int n):v(n),b(n){} }; int main() { int n; while(cin >>n) { Big a1(n); Big a2

  • 面向对象2022-02-19 16:03:34

    面向对象 委托构造 C++11 引入了委托构造的概念,这使得构造函数可以在同一个类中一个构造函数调用另一个构造函数,从而达到简化代码的目的: #include <iostream> class Base { public: int value1; int value2; Base() { value1 = 1; } Base(int value)

  • maven - Caused by: java.rmi.ConnectException: Connection refused to host: 127.0.0.1;2022-02-19 12:32:33

    maven下载源码报错信息: java.lang.RuntimeException: Cannot reconnect. at org.jetbrains.idea.maven.server.RemoteObjectWrapper.perform(RemoteObjectWrapper.java:82) at org.jetbrains.idea.maven.server.MavenEmbedderWrapper.customizeForResolve(MavenEmbedderW

  • hive的UDF函数和UDTF函数还是挺难的(´・㉨・`)2022-02-18 23:31:10

    insertoverwritetabledwd_base_event_log PARTITION(dt='2019-02-10') select mid_id, user_id, version_code, version_name, lang, source, os, area, model, brand, sdk_version, gmail, height_width, app_time, network, lng, lat, event_name, event_json, se

  • 让你的yum加速起来2022-02-18 23:04:19

    转载于:博主链接 很多时候,linux从yum上安装源总是无比的慢,没办法,因为都是国外的。这里讲一个配置国内 yum (网易163)源的简单方式。 先拉取wget(如果已经安装,则跳过,可通过wget --help判断是否已安装wget) yum -y install wget 所处位置为根目录/,拉取国内yum的repo文件保存在根目录下(

  • 【模板】矩阵快速幂2022-02-17 15:03:00

    矩阵快速幂与正常的整数快速幂完全一致,只不过重定义了一下乘号罢了。 但注意此代码下的ans应初始化为矩阵乘法的幺元——即单位矩阵。 联动#F.Tr A #include<bits/stdc++.h> using namespace std; int n, moyn = 9973, t, s; struct matrix{ long long mat[10][10]; matrix() {

  • centos8安装阿里云源和epel2022-02-15 14:01:40

    1. 备份mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 2.下载wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo 3.生成缓存yum clean allyum makecache 4.安装epelyum install epel-rel

  • 【雕爷学编程】Arduino动手做(97)---10段LED光柱模块2022-02-10 08:00:39

    37款传感器与执行器的提法,在网络上广泛流传,其实Arduino能够兼容的传感器模块肯定是不止这37种的。鉴于本人手头积累了一些传感器和执行器模块,依照实践出真知(一定要动手做)的理念,以学习和交流为目的,这里准备逐一动手尝试系列实验,不管成功(程序走通)与否,都会记录下来---小小的进步或是

  • linux IP设置2022-02-09 15:06:10

    虚拟机网卡使用桥连模式 ifconfig -a /etc/sysconfig/network-scripts/ifcfg-具体的网卡   TYPE=EthernetBOOTPROTO=static  #设置静态IpDEFROUTE=yesIPV4_FAILURE_FATAL=noIPV6INIT=yesIPV6_AUTOCONF=yesIPV6_DEFROUTE=yesIPV6_FAILURE_FATAL=noNAME=eno16777736UUID=4f40dedc-

  • 简单易懂的MySql好操作且容易上手2022-02-09 09:04:01

    服务器: ​ 硬件服务器(个人电脑、机房的服务器--刀片式服务器)​ 云服务器: (阿里云、腾讯云、华为云、等等。。。。) ​ 软件服务器: ​ 你在你的个人电脑还是 (云服务器) 上开启一个服务。(软件服务器)。 ftp服务器: 默认端口:21http服务器: 默认端口:80 (Apache、Nginx)https服务器:

  • insert_base_x.txt2022-02-08 16:34:32

    insert into g_temp.test_basevalues('20220202'::date, 1, 'apple'),('20220203'::date, 5, 'banana'),('20220204'::date, 1, 'apple'),('20220205'::date, 5, 'banana'),('20220208

  • 【打卡】URL编码(简单)2022-02-07 23:35:18

    描述 给出一个代表网址 host 的字符串 base_url,和代表查询参数的数组 query_params,你需要返回带查询参数的完整 URL。 查询参数由一些包含两个元素的数组组成,第一个元素代表参数,第二个元素代表该参数对应的值。 现在需要你拼接两个部分得到完整的 URL。base_url 和查询参数字

  • 快速排序(C++)2022-02-07 11:01:56

    int partition(int arr[], int low, int high) { int i = low; int j = high; int base = arr[low]; if (low < high) { while (i < j) { while (i < j && arr[j] >= base) { j--; } if (i < j)//右边小于基数 { arr[i++] = arr[j];

  • caffe 模型训练超参数配置2022-02-06 14:06:30

    #往往loss function是非凸的,没有解析解,我们需要通过优化方法来求解。 #caffe提供了六种优化算法来求解最优参数,在solver配置文件中,通过设置type类型来选择。 Stochastic Gradient Descent (type: "SGD"), AdaDelta (type: "AdaDelta"), Adaptive Gradient (type: "AdaGrad"),

  • 通过mem32函数来提高MM32 MicroPython 输出PWM 频率的精度2022-02-05 20:58:32

    简 介: 利用mem32功能,对于MM32的MicroPython中的PWM频率精度低的问题,通过重新调整ARR来提高PWM频率精度。 关键词: PWM,MM32,MicroPython,mem32

  • 【C++】C++行操作,退格,退行,空格输出。2022-02-05 17:03:18

    //话不多说,代码先行。 #pragma once #include <stdlib.h> #include<iostream> using namespace std; #define STACK_INIT_SIZE 10 #define OVERFLOW - 2 #define OK 1 #define ERROR 0 typedef char SElemType; //栈结构体 typedef struct { SElemType* base;//栈底 SElemT

  • 分数(蓝桥杯省赛2018C/C++A组第一题)2022-02-04 16:59:31

    题目: 1/1+1/2+1/4+1/8+… 每项是前一项的一半,如果一共有20项,求这个和是多少,结果用分数表示出来。 类似:3/2,当然,这只是加了前 2 项而已。分子分母要求互质。 思路: 仅题目而言,根据观察得出该分数相加符合等比公式求和,故使用等比公式求和可将原式化简为(2^20 -1) / (2 ^19),即可

  • PAT甲级 1015 刷题记录2022-02-03 11:59:07

    文章目录 一、答案二、坑点 一、答案 #include <iostream> #include <math.h> using namespace std; int judge_prime(long int num); //判断质数的函数 long int base_change(long int check_num,int base_system); //十进制转换成其他进制的函数 lo

  • 【毕设Day3】2022-02-02 23:00:19

    毕设Day3 前言一、请求疫情信息数据1.在api文件夹下base.js文件请求数据2.index.js里面封装3.将api挂载全局(挂载到Vue原型上,使全局都可以访问) 前言 第三天啦!!!加油加油加油! 一、请求疫情信息数据 完整接口地址:http://api.tianapi.com/ncov/index?key=412004cd81d5f87c2ea

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有