E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
cout
Qt获取计算机名、用户名、IP地址、MAC
network模块#1.在pro文件中添加QT+=network#需要用到的头文件#include//计算机名#include//用户名(获取家目录,删除其它字段只保留用户名)#include//网卡信息
cout
AddressList
嵌入式小龙
·
2023-11-29 05:58
qt
tcp/ip
macos
牛客练习赛87 B k小数查询(STL)
unordered_mapL;unordered_mapR;inta[N];intmain(){ios::sync_with_stdio(false);cin.tie(0);
cout
.tie(0);intn
Orz_Sponge_Bob
·
2023-11-29 04:09
【C++11新特性】范围for循环
范围for循环遍历数组的示例intarr[]={1,2,3,4,5};for(intnum:arr){std::
cout
vec={1,2,3,4,5};for(intnum:vec){std::
cout
Ye-Maolin
·
2023-11-29 03:22
C++进阶
c++
开发语言
AtCoder Beginner Contest 226
%d",&a,&b);if(b>=500)a++;
cout
usingnamespacestd;set>st;intmain(void){vectorn
Code_Shark
·
2023-11-29 00:10
AtCoder
c++
acm竞赛
编程语言
如何在C++中将int类型的变量转换为string类型呢?今天我们就来介绍两种方法。
下面是一个使用示例:#include#includeintmain(){intnum=12345;std::stringstr=std::to_string(num);std::
cout
。第
CodeWG
·
2023-11-29 00:09
c++
开发语言
C/C++
刷题记录第三十三天-反转字符串和反转字符串II
str.size()-1;while(left
cout
onlyzzr
·
2023-11-28 23:04
每日一题
算法
c++
数据结构
【C++】define宏定义
它用来将一个标识符定义为一个字符串,该标识符被称为宏名,被定义的字符串称为替换文本;define()操作符#:可将参数转化为字符串;#includeusingnamespacestd;#defineprint(xx,a,b)
cout
usingnamespacestd
十字星的约定_
·
2023-11-28 22:37
c++
算法
c++
开发语言
c语言
Codeforces Round 908 (Div. 2)
CodeforcesRound908(Div.2)ABCDA获取对战的最后一个即为胜者#includeusingnamespacestd;voidsolve(){intn;cin>>n;strings;cin>>s;
cout
十字星的约定_
·
2023-11-28 22:36
算法
算法
数据结构
c++
Java线程同步
认识线程同步解决方案方法一:同步代码块packagecom.itheima.d3;publicclassThreadTest{publicstaticvoidmain(String[]args){Ac
cout
acc
rch041126
·
2023-11-28 21:21
java
Java多线程
java
开发语言
jvm
Java线程安全问题
packagecom.itheima.d3;publicclassThreadTest{publicstaticvoidmain(String[]args){//1、创建一个账户对象,代表两个人的共享账户Ac
cout
acc
rch041126
·
2023-11-28 21:51
Java多线程
java
Java的题目案例
java
开发语言
spring与junit的整合
前言在我们把spring的上下文配置都配置好后,要想进行测试,代码如下:publicclassAc
cout
DaoTest{@Resource(name="accountDao")privateAccountDaoaccountDao
家里有只mini猫
·
2023-11-28 20:37
知识的宝库
java
spring
【CSDN竞赛第45期】C++题解
如果两个数的平方和或平方差的绝对值为整数,则说明这个数是个平方数,它存在#includeusingnamespacestd;intmain(){doublea,b;cin>>a>>b;if(a==b){
cout
辉常腻害
·
2023-11-28 19:34
c++
开发语言
常量指针和指针常量的区别
constint*p;#includeusingnamespacestd;intmain(intargc,char*argv[]){inta=10;intb=20;constint*p=&a;//常量指针
cout
usingnamespacestd
微尘8
·
2023-11-28 15:24
C/C++基础知识
c++
c语言
【C++】静态成员
类外初始化静态成员函数所有对象共享同一个函数静态成员函数只能访问静态成员变量#includeusingnamespacestd;classPerson{public:staticintm_A;//静态成员变量staticvoidfunc(){
cout
小谢sd
·
2023-11-28 14:10
C/C++
c++
开发语言
C7510:类型从属名称的使用必须以“typename”为前缀
=x.end()){
cout
voidPrintContainer(constCon&c){Con::const_iterator*x;}对于上述代码,如果const_iterato
Ssorrymaker
·
2023-11-28 13:34
C++
c++
开发语言
c++11多线程
demo1#include#include#includeusingnamespacestd;voidoutput(inti){sleep(1);
cout
#include#include//Sleep(
假装程序员的第XXX天
·
2023-11-28 13:29
C++
C++(20):通过starts_with/ends_with检查字符串
用于检查字符串是否以某个字符串开始,ends_with用于检查是否以某个字符串结束:#include#includeusingnamespacestd;intmain(){stringstr="helloand88";
cout
风静如云
·
2023-11-28 13:28
C/C++
c++
C++(20):counting_semaphore信号量
用于更加方便的完成对信号量的使用:#include#include#includeusingnamespacestd;counting_semaphoreg_sem{0};voidtFunc(intnum){
cout
风静如云
·
2023-11-28 13:28
C/C++
c++
C++(20):bind_front
#include#includeusingnamespacestd;voidfunc1(intd1,intd2){
cout
<<__func__<<""<
风静如云
·
2023-11-28 13:58
C/C++
c++
C++(20):通过remove_cvref_t退化类型
C++20提供了更为彻底的类型退化remove_cvref_t,可以去除掉类型的const,引用,以及右值:#include#includeusingnamespacestd;intmain(){
cout
风静如云
·
2023-11-28 13:23
C/C++
c++
C++11新特性 变参模板、完美转发和emplace
#include#include#include#include#includeusingnamespacestd;classstudent{public:student(){
cout
age=age;/
luciferau
·
2023-11-28 08:24
c++
C++值常用集合算法
set_intersection#includeusingnamespacestd;#include#include#includeclassMyPrint{public:voidoperator()(intval){
cout
v
傻童:CPU
·
2023-11-28 07:41
C++
c++
算法
rpc
C++:类中const修饰的成员函数
const修饰类的成员函数二.类的两个默认的&运算符重载三.日期类小练习一.const修饰类的成员函数1.问题引出:给出一段简单的代码代码段:#includeusingstd::cin;usingstd::
cout
摆烂小青菜
·
2023-11-28 06:03
初阶C++
c++
开发语言
C++:对象模型和this指针
编译器会给每个空对象也分配一个字节空间,是为了区分空对象占内存的位置每个空对象也应该有一个独一无二的内存地址classPerson{public:};voidtest01(){Personp;//空对象占用内存空间为:
cout
m_Aage
zyc0705
·
2023-11-28 06:01
C++
c++
【C++】const修饰的成员函数
一.const修饰成员函数的格式在成员函数的后边加上constvoiddisplay()const{swap(5);
cout
<<"display()"<
忽晴忽雨江湖
·
2023-11-28 06:30
C+
C++:const修饰变量、形参、函数
const修饰变量intmain(intargc,char*argv[]){constintb=3;int*c=(int*)&b;*c=5;//这里即便把b所在地址的值修改了,但后面调用b的时候,b仍然是3
cout
name
六月的翅膀
·
2023-11-28 06:30
C++
c++
C++ 笔记 const关键字修饰函数返回值
newchar[3];4p[0]='a';5p[1]='b';6p[2]='\0';7returnp;8}910intmain()11{12constchar*p=helpFun();13p++;14
cout
一棵栗子树
·
2023-11-28 06:30
C++
使用sizeof计算含有虚函数的类对象的空间大小
前提条件:32位WinNT操作系统#includeusingnamespacestd;classBase{public:Base(intx):a(x){}voidprint(){
cout
<<"base"
灬烟花易冷灬
·
2023-11-28 04:34
C++面试
c++
使用sizeof计算虚拟继承的类对象的空间大小
virtualpublicA{};classE:virtualpublicA,virtualpublicB{};classF{public:inta;staticintb;};intF::b=10;intmain(){
cout
灬烟花易冷灬
·
2023-11-28 04:02
C++面试
c++
深刻理解形参和实参的三种传递方式(值传递,地址传递,引用传递)
提示:以下是本篇文章正文内容,下面案例可供参考一、值传递在主函数中#includeusingnamespacestd;voidmain(){inti=10;intj=i;j=20;
cout
usingnamespacestd
欲弥
·
2023-11-28 03:59
形参与实参
传递
c++
指针
编程语言
字符串与数字之间的转换
intvalue)stringto_string(longvalue)stringto_string(doublevalue)来看以下代码示例:inta=5;stringstr=to_string(a*a);
cout
羊羊不懒
·
2023-11-28 03:57
2020蓝桥杯
C++ 引用和函数高级运用
引用简介引用的作用就是给变量起别名语法:数据类型&别名=原名#includeusingnamespacestd;intmain(){inta=10;//创建引用int&b=a;
cout
usingnamespacestd
小潤澤
·
2023-11-28 01:17
灵茶 - 2023 - 11 - 27
应该放在第一个2前面,要注意的是:没有2的情况;代码:#include#defineIOSios::sync_with_stdio(0);cin.tie(0);
cout
.tie(0);#defi
ros275229
·
2023-11-28 00:53
算法学习
灵茶
CF
算法
洛谷题单--线性表
includeusingnamespacestd;intmain(){intn,q;cin>>n>>q;vectora(n+1);for(inti=1;i>a[i];while(q--){intx;cin>>x;
cout
ros275229
·
2023-11-28 00:22
算法学习
洛谷
算法
c++
数据结构
School training competition ( Second )
A.MediumNumber链接:Problem-1760A-Codeforces就是求三个数的中位数:#include#defineIOSios::sync_with_stdio(0);cin.tie(0);
cout
.tie
ros275229
·
2023-11-28 00:19
算法学习
CF
算法
c++
C++ sizeof使用和指针变量占字节数
cout
<<"char=="<
cout<<"int=="<
cout<<"double=="<
weixin_45483780
·
2023-11-27 17:28
c++
mfc
开发语言
C++学习笔记——01
目录标题一、C++开发环境安装二、CLion输出中文乱码(一)修改File|Settings|Editor|FileEncodings(二)最后有两种方式实现(三)
cout
输出中文报错三、C++官方文档四
乌鱼鸡汤
·
2023-11-27 15:01
c++
c++
学习
开发语言
opencv小案例 --- 证件照背景替换
Mat&image);intmain(intargc,char**argv){Matsrc=imread("E:/技能学习/opencv图像分割/test.jpg");if(src.empty()){
cout
焦糖甜饼~
·
2023-11-27 09:14
Opencv
opencv
计算机视觉
人工智能
王者荣耀小游戏1.0震撼上线!C++版
#include//编个游戏,不顾一切的用万能#includeusingnamespacestd;chara;intmain(){
cout
>a;system("Cls");if(a=='A'||a=='
FiveDiamondore
·
2023-11-27 08:53
关机游戏
求最大公约数c语言实验心得,C语言编程实训报告(合集)
cout
=90)grade='A';elseif(score>=80)grade='B';elseif(score>=70)grade='C';elseif(score>=60)grade='D';elsegrade
江平舟
·
2023-11-27 08:13
求最大公约数c语言实验心得
P21-23-逻辑运算符-否、或、与
#includeusingnamespacestd;intmain(){//逻辑运算符非//在c++中,除了0都是为真inta=10;
cout
<
又怨芭蕉
·
2023-11-27 07:45
html5
html
P29-选择结构-三目运算符a>b?a:b
a:b)=100;//若a>b则返回a或b或者进行赋值
cout
<<a<<endl;
cout
<<b<<endl;
cout
<<c<<
又怨芭蕉
·
2023-11-27 07:45
html
html5
css
C++ STL set:erase()、clear()、find()、insert()方法
、erase()方法如图所示:#include#include#includeusingnamespacestd;intmain(){//创建并初始化set容器setmyset{1,2,3,4,5};
cout
Bug->Maker
·
2023-11-27 05:46
c++
算法
开发语言
《C++PrimePlus》第7章 函数:C++的编程模块
includeusingnamespacestd;intmain(){voidcheers(intn);doublecube(doublex);cheers(5);doubleres;res=cube(1.5);
cout
usingnamespacestd
Mako5455
·
2023-11-27 05:45
C++
c++
《C++PrimePlus》第8章 函数探幽
内联函数使用内联函数#includeusingnamespacestd;inlinedoublesquare(doublex){returnx*x;}intmain(){doublea;a=square(5.0);
cout
usingnamespacestd
Mako5455
·
2023-11-27 05:45
C++
c++
C++中的访问限定符之protected
classFish{public:boolisFreshWaterFish;voidSwim(){if(isFreshWaterFish)
cout
usingnamespacestd;classFish{
图灵,图灵,图个机灵
·
2023-11-27 04:01
C++编程基础
c++
C++ 协程
createataskusingfactoryfunction[withlambdaexpression]my_task_t::ptr_ttask=my_task_t::create([](){//创建协程std::
cout
海木漄
·
2023-11-27 01:36
C++
C++20
c++
算法
开发语言
fhog资料整理
/FHOGhttps://github.com/ppaanngggg/fhog这个有两种:1.DPM的Mattmp_image;image.convertTo(tmp_image,CV_32FC1);
cout
AI视觉网奇
·
2023-11-27 00:51
视觉跟踪
C++11的线程
下面是创建线程的示例:#include#includeusingnamespacestd;voidfunc(){
cout
#include#includeusingnamespacestd;voidfunc
铲灰
·
2023-11-26 22:31
深入应用C++11
开发语言
c++
C++拷贝构造函数与移动构造函数
#includeusingnamespacestd;classdemo{public:demo():num(newint(0)){
cout
usingnamespa
guobaoteacher
·
2023-11-26 22:59
C++
c++
开发语言
上一页
33
34
35
36
37
38
39
40
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他