C++ 结构体

构造函数初始化结构体

C++结构体的继承默认是public,而c++类的继承默认是private

struct node{
    int a,b;
    node():a(0),b(0){}
    node(int a,int b):a(a),b(b){}
};

应用

复制代码
 1 #include<iostream>
 2 #include<queue>
 3 
 4 using namespace std;
 5 
 6 struct node{
 7     int a,b;
 8     node():a(0),b(0){}
 9     node(int a,int b):a(a),b(b){}
10 }s;
11 
12 int main(){
13     queue<node>qe;
14     qe.push(node());
15     s=qe.front();
16     cout<<s.a<<' '<<s.b<<endl;
17     qe.pop();
18     qe.push(node(1,3));
19     s=qe.front();
20     cout<<s.a<<' '<<s.b<<endl;
21     return 0;
22 }
View Code
复制代码
 

重载操作符

struct node{
    int x,y;
    int id;
    bool operator <(const node p){
        if(x==p.x) return y<p.y;
        return x<p.x;
    }
}arr[N*3];

 

posted @   ___292  阅读(412)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用
点击右上角即可分享
微信分享提示