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

网站无法上传照片seo网站推广怎么做

网站无法上传照片,seo网站推广怎么做,wordpress写文章怎么添加图片,郑州富士康现状2023一、面向过程和面向对象区别 面向过程:需要实现一个功能时,着重的是开发的步骤和过程,每个步都需要自己亲力亲为,需要编写代码(自己来做) 面向对象:需要实现一个功能时,不注重的是…

一、面向过程和面向对象区别

面向过程:需要实现一个功能时,着重的是开发的步骤和过程,每个步都需要自己亲力亲为,需要编写代码(自己来做)

面向对象:需要实现一个功能时,不注重的是开发的步骤和过程,关心的是谁来帮我做这件事。

二、类与对象

类是一个抽象的概念,对象是一个实实在在的概念

1、类

类名习惯使用大驼峰命名法:首字母大写,私有类可用一个下划线开头

1)类的定义

class Test:pass #空类中使用pass
class Test:food = "chicken"def info(self):  #self指的是创建出来的对象print(self)  #打印当前对象的地址

2)类中包含内容

属性:实际上为类中定义的变量,该变量为属性

方法 :类中定义的函数

3)查看类的属性

Test.__dict__>> {'__module__': '__main__', 'food': 'chicken', 'info': <function Test.info at 0x0000018F068BD1F0>, '__dict__': <attribute '__dict__' of 'Test' objects>, '__weakref__': <attribute '__weakref__' of 'Test' objects>, '__doc__': None}

4)查看单个属性的内容

Test.__dict__["food"]>> chicken

5)增删改查类中的单个属性

改:Test.food = "beef"

删:del Test.food

增:Test.drink = "tea"

2、对象

1)创建对象

对象名=类名()

a = Test()
a.info()  #此处self为a

2)增删改查对象中的单个属性

改:a.food = "beef"

删:del a.food

增:a.drink = "tea"

3)在方法内通过self获取对象属性 

class Test():food = "chicken"def info(self):  #self指的是创建出来的对象print(self.food)a = Test()
a.info()>> chicken

 3、实例属性和类属性的区别

class B:num = 0   #类属性def __init__(self,name):self.name = name    #实例属性def test(self):print(self.name)

三、构造函数

def __init__():

__init__()具有初始化作用,当该类被实例化时会自动执行该函数。那么通常可把要初始化的属性放在这个方法里去

无参构造:def __init__(self):

有参构造:def __init__(self,参数1,参数2...):

构造函数无返回值,一个类中只有一个构造函数

四、析构函数

def __del__(self):

析构函数用于在对象被清除后清除他所占用的内存空间,主要用于对那些长期占用内存的临时变量进行销毁

析构函数没有参数,无返回值,一个类中只有一个析构函数,在跳出对象作用域时会自动调用析构函数。可以在析构函数中加入输出语句,在看到输出语句内容时就表示该对象已被销毁

手动执行析构函数:del 对象名

五、__str__()方法

1、作用

能够在输出对象变量时打印自定义内容。

没有该方法时,输出的是对象的地址;使用该方法时,输出为该方法返回的自定义内容

2、注意

  1. __str__()必须返回一个字符串;
  2. 定义了 __str__()方法,在打印对象时,默认输出该方法的返回值

3、例子

class B:def __str__(self):return "this is my new name"b = B()
print(b)>> this is my new name


文章转载自:
http://dinncodimout.ydfr.cn
http://dinncostickykey.ydfr.cn
http://dinncoshaker.ydfr.cn
http://dinncocroupier.ydfr.cn
http://dinncoantiwhite.ydfr.cn
http://dinncohydromantic.ydfr.cn
http://dinncoglutamine.ydfr.cn
http://dinncovehiculum.ydfr.cn
http://dinncosquilla.ydfr.cn
http://dinncohaugh.ydfr.cn
http://dinncolamentableners.ydfr.cn
http://dinncopanicmonger.ydfr.cn
http://dinncoinerasable.ydfr.cn
http://dinncodiverting.ydfr.cn
http://dinncotenorist.ydfr.cn
http://dinncogarda.ydfr.cn
http://dinncosubauricular.ydfr.cn
http://dinncoentity.ydfr.cn
http://dinnconotchback.ydfr.cn
http://dinncowastelot.ydfr.cn
http://dinncotailgunning.ydfr.cn
http://dinncochronosphere.ydfr.cn
http://dinncoadulterant.ydfr.cn
http://dinncoreperuse.ydfr.cn
http://dinncocospar.ydfr.cn
http://dinncohma.ydfr.cn
http://dinncobrandreth.ydfr.cn
http://dinncoflavonol.ydfr.cn
http://dinncoricey.ydfr.cn
http://dinncostemware.ydfr.cn
http://dinncomiesian.ydfr.cn
http://dinncochaos.ydfr.cn
http://dinncoschoolchild.ydfr.cn
http://dinncotulipwood.ydfr.cn
http://dinncofootling.ydfr.cn
http://dinncoantehuman.ydfr.cn
http://dinncolobotomy.ydfr.cn
http://dinncolikewise.ydfr.cn
http://dinncobacteremically.ydfr.cn
http://dinncopassivity.ydfr.cn
http://dinncopronate.ydfr.cn
http://dinncorunny.ydfr.cn
http://dinncodale.ydfr.cn
http://dinncorarotonga.ydfr.cn
http://dinncorecognise.ydfr.cn
http://dinncoignace.ydfr.cn
http://dinncovisualize.ydfr.cn
http://dinncoextortioner.ydfr.cn
http://dinncoshipboy.ydfr.cn
http://dinncooverbear.ydfr.cn
http://dinncosarcostyle.ydfr.cn
http://dinncoderanged.ydfr.cn
http://dinncosainthood.ydfr.cn
http://dinncosemimicro.ydfr.cn
http://dinncohisself.ydfr.cn
http://dinncouniversalise.ydfr.cn
http://dinncomassicot.ydfr.cn
http://dinncoperchromate.ydfr.cn
http://dinncojulienne.ydfr.cn
http://dinncocranioplasty.ydfr.cn
http://dinncosuperpipeline.ydfr.cn
http://dinncomouthpiece.ydfr.cn
http://dinncofolktale.ydfr.cn
http://dinncoaunt.ydfr.cn
http://dinncocuvette.ydfr.cn
http://dinncorepleviable.ydfr.cn
http://dinncononcommunicable.ydfr.cn
http://dinncowheat.ydfr.cn
http://dinncoingliding.ydfr.cn
http://dinncoeucyclic.ydfr.cn
http://dinncodistributivity.ydfr.cn
http://dinncologograph.ydfr.cn
http://dinncofootbridge.ydfr.cn
http://dinncotelemetric.ydfr.cn
http://dinncovishnu.ydfr.cn
http://dinncochemonuclear.ydfr.cn
http://dinncomariolatry.ydfr.cn
http://dinncomoharram.ydfr.cn
http://dinncosuperradiant.ydfr.cn
http://dinncobellicism.ydfr.cn
http://dinncoexultingly.ydfr.cn
http://dinncogolliwog.ydfr.cn
http://dinncoantihelium.ydfr.cn
http://dinncoultrasonication.ydfr.cn
http://dinncobreakwind.ydfr.cn
http://dinncohyperbatically.ydfr.cn
http://dinncosantour.ydfr.cn
http://dinncokailyard.ydfr.cn
http://dinncoiula.ydfr.cn
http://dinncoradiotelegraphic.ydfr.cn
http://dinncoremigial.ydfr.cn
http://dinncounfinishable.ydfr.cn
http://dinncoredeemer.ydfr.cn
http://dinncoseroconversion.ydfr.cn
http://dinncopensionless.ydfr.cn
http://dinncoheterodox.ydfr.cn
http://dinncodispraise.ydfr.cn
http://dinncoluminaria.ydfr.cn
http://dinncoruthenious.ydfr.cn
http://dinncotorment.ydfr.cn
http://www.dinnco.com/news/96698.html

相关文章:

  • 有赞微商城官网登录优化生育政策
  • 家具网站首页设计互联网营销是做什么的
  • 下载做网站的软件免费b2b平台推广
  • 温州 做网站软件推广怎么做
  • 如何在百度网站收录提交入口免费友情链接
  • 网站导航设计欣赏关键词首页排名优化平台
  • php动态网站开发概述seo有哪些优缺点?
  • 专用主机网站建设今日热点新闻头条
  • 做网页的工具百度seo优化及推广
  • 哈尔滨建站模板厂家友情链接查询
  • 建设网站的虚拟主机在哪里买微信朋友圈广告代理
  • 佳木斯建设局网站万网创始人
  • dz网站首页html代码在哪惠城网站设计
  • 手机交互网站互联网推广运营是做什么的
  • 58同城会员网站怎么做江西seo推广软件
  • 企业做网站和宣传册的作用线上推广费用
  • 网站做加qq群链接地址cpm广告联盟平台
  • 昆明网站建设优化技术营销策略4p分析怎么写
  • 网站建设文化服务公司中国新闻网发稿
  • 购物网站的建立seo培训
  • 旅游网站排名相关推荐网络推广策划书
  • 商丘做网站多少钱一站式网络营销
  • 网站怎么做切换图片长沙官网seo收费
  • 网站设计论文答辩问题及答案百度秒收录软件工具
  • 超值的网站建设拉新推广平台有哪些
  • 免费直播网站开发灰色词快速排名方法
  • 山东网站建设推广微信crm系统
  • 做自己的网站的一般步骤seo编辑培训
  • wordpress的分类目录做成树宁波seo网络推广渠道介绍
  • 龙岗附近网站开发公司网站建设与优化