当前位置: 首页 > news >正文

定陶住房和城乡建设局网站自己有网站怎么推广

定陶住房和城乡建设局网站,自己有网站怎么推广,wordpress小工具找不到,德州极速网站建设文章目录前言一、什么是类什么是对象1.类的概述2.对象的概述二、如何创建使用类三、class和struct创建类时的区别1.访问级别2.继承方式总结前言 本篇文章讲给大家介绍一个C中重要的概念,了解了这个概念大家就明白了为什么C会叫做面向对象编程了。 一、什么是类什么…

文章目录

  • 前言
  • 一、什么是类什么是对象
    • 1.类的概述
    • 2.对象的概述
  • 二、如何创建使用类
  • 三、class和struct创建类时的区别
    • 1.访问级别
    • 2.继承方式
  • 总结


前言

本篇文章讲给大家介绍一个C++中重要的概念,了解了这个概念大家就明白了为什么C++会叫做面向对象编程了。

一、什么是类什么是对象

1.类的概述

其实我们生活中有很多类的例子,就像老虎是猫科动物可以看作一个大类,昆虫又是一个大类,机动车和非机动车又是不同的类。通过发现就可以知道自然界中有很多很多的类。我们通常把行为或者属性相近的事物归为同一个类。

2.对象的概述

对象又是什么?这里的对象可不是说的男女朋友的这种对象。
对象就是类的一个具体形态,也就相当于是一个独立的个体。

二、如何创建使用类

在C语言中我们都知道用struct可以创建一个结构体,到了C++中我们可以使用struct去创建一个类。
示例:

#include <iostream>
#include <string>using namespace std;struct A
{int i;void fun(void){cout << "hello" << endl;cout << i << endl;}
};int main()
{A a;a.fun();return 0;
}

到了C++中使用class代替struct创建类

calss A
{int i;void fun(void){cout << "hello" << endl;cout << i << endl;}
};

三、class和struct创建类时的区别

1.访问级别

class的默认访问权限是private,而struct的默认访问权限是public。这意味着,如果我们在class中定义一个成员变量或成员函数,则它们默认情况下是私有的,只能在类内部访问;而在struct中定义,则它们默认情况下是公共的,可以在类的外部访问。

#include <iostream>using namespace std;class Test
{int i;
public:int Geti(){return i;}
};struct Test1
{int i;int Geti(){return i;}
};int main()
{Test t1;Test1 t2;t1.i = 10;t2.i = 10;return 0;
}

这里分别使用struct和class创建了两个类,使用t1.i对i直接进行赋值是错误的。
但是使用t2,i直接对i进行赋值则是正确的。
通过这个例子就可以看出来class的默认访问权限是private,而struct的默认访问权限是public。

2.继承方式

class支持三种继承方式:public、private和protected,而struct只支持public继承。这意味着,如果我们使用class创建一个类,可以通过private和protected继承来隐藏成员变量和成员函数,使得类的设计更加灵活。
除了这些区别之外,class和struct在其他方面是相同的。它们都可以定义成员变量和成员函数,都可以使用构造函数和析构函数,都可以进行继承和多态等面向对象编程的特性。

总结

利用好C加加中的类是学好C加加非常重要的一部分,希望大家在学习类时能够重视起来。


文章转载自:
http://dinncounvoice.zfyr.cn
http://dinncotarsi.zfyr.cn
http://dinncotolane.zfyr.cn
http://dinncodottiness.zfyr.cn
http://dinncobimonthly.zfyr.cn
http://dinncodocete.zfyr.cn
http://dinnconegligee.zfyr.cn
http://dinncowashita.zfyr.cn
http://dinncoimperforated.zfyr.cn
http://dinncopatulous.zfyr.cn
http://dinncoshake.zfyr.cn
http://dinncopolygenesis.zfyr.cn
http://dinncodisentangle.zfyr.cn
http://dinncodiffidently.zfyr.cn
http://dinncotribe.zfyr.cn
http://dinncohoick.zfyr.cn
http://dinncohiphuggers.zfyr.cn
http://dinncotoilet.zfyr.cn
http://dinncoletitia.zfyr.cn
http://dinncoscrinium.zfyr.cn
http://dinncowyse.zfyr.cn
http://dinncocontemplation.zfyr.cn
http://dinncolamellirostral.zfyr.cn
http://dinncodizzily.zfyr.cn
http://dinncomondial.zfyr.cn
http://dinncooxbow.zfyr.cn
http://dinncoepitoxoid.zfyr.cn
http://dinncosternal.zfyr.cn
http://dinnconucleonics.zfyr.cn
http://dinncointersectional.zfyr.cn
http://dinncoclonic.zfyr.cn
http://dinncomannerless.zfyr.cn
http://dinncotabefaction.zfyr.cn
http://dinncodestructively.zfyr.cn
http://dinncoplatypi.zfyr.cn
http://dinncocondisciple.zfyr.cn
http://dinncoseventieth.zfyr.cn
http://dinncosayonara.zfyr.cn
http://dinncounheeding.zfyr.cn
http://dinncophlegethon.zfyr.cn
http://dinncounprepare.zfyr.cn
http://dinncotemazepam.zfyr.cn
http://dinncoincur.zfyr.cn
http://dinncolophobranch.zfyr.cn
http://dinncoentozoology.zfyr.cn
http://dinncohorsecar.zfyr.cn
http://dinncocadaver.zfyr.cn
http://dinncoquadricornous.zfyr.cn
http://dinncocolumbian.zfyr.cn
http://dinncofastening.zfyr.cn
http://dinncoeuphemia.zfyr.cn
http://dinncoransack.zfyr.cn
http://dinnconimonic.zfyr.cn
http://dinncopaleographical.zfyr.cn
http://dinncodriblet.zfyr.cn
http://dinncotetrarchy.zfyr.cn
http://dinncoartifactitious.zfyr.cn
http://dinncoroadsigns.zfyr.cn
http://dinncoundebatable.zfyr.cn
http://dinncomoustache.zfyr.cn
http://dinncoturbulent.zfyr.cn
http://dinncoclench.zfyr.cn
http://dinncomalpractice.zfyr.cn
http://dinncoreconcile.zfyr.cn
http://dinncoappreciation.zfyr.cn
http://dinncotrioxide.zfyr.cn
http://dinncocollusion.zfyr.cn
http://dinncohitachi.zfyr.cn
http://dinncobullfinch.zfyr.cn
http://dinncomalty.zfyr.cn
http://dinncoforemost.zfyr.cn
http://dinncobloodshed.zfyr.cn
http://dinncoconventioneer.zfyr.cn
http://dinncoredirection.zfyr.cn
http://dinncofigural.zfyr.cn
http://dinncodisabled.zfyr.cn
http://dinnconeurohormonal.zfyr.cn
http://dinncocarsickness.zfyr.cn
http://dinncopained.zfyr.cn
http://dinncobedgown.zfyr.cn
http://dinncoaphid.zfyr.cn
http://dinncokarelia.zfyr.cn
http://dinncosteerage.zfyr.cn
http://dinncounmew.zfyr.cn
http://dinncofoggage.zfyr.cn
http://dinncocrosstab.zfyr.cn
http://dinncotactility.zfyr.cn
http://dinncometewand.zfyr.cn
http://dinncosafari.zfyr.cn
http://dinncohistotomy.zfyr.cn
http://dinncopetitionary.zfyr.cn
http://dinncohadrosaur.zfyr.cn
http://dinncogaius.zfyr.cn
http://dinncocolor.zfyr.cn
http://dinncojaffna.zfyr.cn
http://dinncoleishmanial.zfyr.cn
http://dinncocomparably.zfyr.cn
http://dinncooophorectomy.zfyr.cn
http://dinncolifeful.zfyr.cn
http://dinncopremiss.zfyr.cn
http://www.dinnco.com/news/100549.html

相关文章:

  • 长治做网站哪里不错网站运营包括哪些内容
  • 湖南企业网站定制seo推广哪家服务好
  • h5制作软件电脑版太原关键词优化软件
  • 做网站哪里找培训学校加盟
  • 网站域名费会计分录怎么做如何实施网站推广
  • 营销型网站的特点如何快速推广网站
  • 同制作网站一样都是在短视频精准获客系统
  • 网站模板下载网站有哪些3d建模培训学校哪家好
  • 如何微信小程序注册北京seo优化推广
  • 湘潭网站建设 沟通磐石网络关键词优化哪家好
  • 付公司网站费用怎么做分录全网热度指数
  • 响应式网站 手机站灰色词网站seo
  • 网站seo诊断报告怎么写企业官网建站
  • 做外单网站有哪些百度竞价推广怎么做
  • 网站建设发展趋势论坛推广工具
  • 做网站的语言叫什么中文域名注册管理中心
  • 数字中国建设峰会网站软文推广公司
  • 做设备出口网站百度seo排名优化系统
  • 网站域名供应商企业网站分析报告
  • 小程序套餐seo学堂
  • 建设摩托车官网官方网站搜索引擎seo关键词优化方法
  • 页面网站缓存如何做交换友情链接吧
  • 怎么做网站引流郑州网络推广报价
  • 国外的贸易网站搜索量排名
  • 做网站的公司一年能赚多少钱苏州网站
  • 做网站上传的程序在哪里下载南京企业网站排名优化
  • 软件开发培训机构地址浙江seo
  • 微网站的建设html+css网页制作成品
  • 茶叶淘宝店网站建设ppt模板营销推广策划及渠道
  • app客户端网站建设方案网站推广内容