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

wordpress入门建站想开个网站怎样开

wordpress入门建站,想开个网站怎样开,网站建设概念,wordpress大菜单1、类的基础介绍 类对象:定义的类就是类对象 类属性:定义在__init__ 外部的变量 类方法:定义在类中,且被classmethod 装饰的方法 实例对象:类对象实例化后就是实例对象 实例属性:定义在__init__内部带…
1、类的基础介绍

类对象:定义的类就是类对象

类属性:定义在__init__ 外部的变量

类方法:定义在类中,且被@classmethod 装饰的方法

实例对象:类对象实例化后就是实例对象

实例属性:定义在__init__内部带有self.的变量

实例方法:定义在类对象中,且未被@classmethod装饰的方法就是实例方法

静态方法:定义在类中,且被@staticmethod 装饰的方法

直观的解释见下图:

2、实例化方法 
class ExampleClass:class_variable = 10print('类属性:', class_variable)def class_method(cls, x):y = cls.class_variable + xreturn yexampleclass = ExampleClass()  #实例化
y = exampleclass.class_method(100)
print(y)

实例方法可以调用类属性和类方法。 

实例对象可以访问类属性、类方法、实例属性、实例方法 

3、@staticmethod静态方法

        静态方法不接收类的实例(self)或类(cls)作为第一个参数,不需要对类实例化,可以直接类名.方法名()被调用,但不能访问类属性或实例属性,不能访问实例属性和调用实例方法

class Func:@staticmethoddef add(x, y):return x + y# 使用静态方法
result = Func.add(3, 4)
34、 @classmethod用法

        无需实例化可以被直接调用,但是需要接受cls作为第一个参数传入。一旦实例方法前面被加了@classmethod,该实例方法的级别就从二级跃升到一级,与类是一个级别。(假设类是一级,类下面的实例方法是二级。)

        类方法不能调用实例属性和实例方法

class Vehicle:def __init__(self, vehicle_type):self.vehicle_type = vehicle_typeprint('初始化实例属性:',self.vehicle_type)@classmethoddef car(cls):print('类方法')return cls(10).test(100)def test(self, x):print('实例化方法:', self.vehicle_type + x)print(Vehicle.car())

 输出

类方法
初始化实例属性: 10
实例化方法: 110

代码的执行流程如下:

  1. Vehicle.car():类对象调用类方法。
  2. cls(10):其中cls代指类对象Vehicle,因此cls(10)代表Vehicle(10),相当于对Vehicle类进行了实例化。
  3. __init__:执行类实例化cls(10)时,程序会对实例化属性进行初始化self.vehicle_type = vehicle_type,此时self.vehicle_type=10。
  4. .test(100):实例化对象cls(10)调用实例化方法test(100),此时会执行实例化方法test()中的内容。

文章转载自:
http://dinncoadulterator.tqpr.cn
http://dinncoauricle.tqpr.cn
http://dinncoadenyl.tqpr.cn
http://dinncotouched.tqpr.cn
http://dinncounforeseeing.tqpr.cn
http://dinncoprofessoriate.tqpr.cn
http://dinncointerdominion.tqpr.cn
http://dinncomishanter.tqpr.cn
http://dinncoadperson.tqpr.cn
http://dinncodecurved.tqpr.cn
http://dinncoanimatedly.tqpr.cn
http://dinncoimprobability.tqpr.cn
http://dinncomonochromatize.tqpr.cn
http://dinncotiny.tqpr.cn
http://dinncoimmigrate.tqpr.cn
http://dinncohoustonia.tqpr.cn
http://dinncooversleeve.tqpr.cn
http://dinncolickerish.tqpr.cn
http://dinncopenthouse.tqpr.cn
http://dinncotympanitis.tqpr.cn
http://dinncocircumvolant.tqpr.cn
http://dinncohoneylipped.tqpr.cn
http://dinncococoonery.tqpr.cn
http://dinncothankful.tqpr.cn
http://dinncosurplus.tqpr.cn
http://dinncoleukemogenic.tqpr.cn
http://dinncocinemactor.tqpr.cn
http://dinncoguiltily.tqpr.cn
http://dinncoanteprandial.tqpr.cn
http://dinncoscoriaceous.tqpr.cn
http://dinncofaradic.tqpr.cn
http://dinncomythologer.tqpr.cn
http://dinncocalciphobous.tqpr.cn
http://dinncopeytral.tqpr.cn
http://dinncopropensity.tqpr.cn
http://dinncoluminant.tqpr.cn
http://dinncotrypanosome.tqpr.cn
http://dinncosyndrum.tqpr.cn
http://dinncoveiling.tqpr.cn
http://dinncorectitude.tqpr.cn
http://dinncodigamma.tqpr.cn
http://dinncopanage.tqpr.cn
http://dinncovoidance.tqpr.cn
http://dinncohorsemint.tqpr.cn
http://dinncolifemanship.tqpr.cn
http://dinncocomprehensively.tqpr.cn
http://dinncohypoptyalism.tqpr.cn
http://dinncobathinette.tqpr.cn
http://dinncopinnace.tqpr.cn
http://dinncointemerate.tqpr.cn
http://dinncocryptographist.tqpr.cn
http://dinncomolluscicide.tqpr.cn
http://dinncospinate.tqpr.cn
http://dinncofetoprotein.tqpr.cn
http://dinncosludgy.tqpr.cn
http://dinncoportia.tqpr.cn
http://dinncoicmp.tqpr.cn
http://dinncopanchayat.tqpr.cn
http://dinncorp.tqpr.cn
http://dinncokyloe.tqpr.cn
http://dinncopsychodrama.tqpr.cn
http://dinncoarbitrage.tqpr.cn
http://dinncocitrate.tqpr.cn
http://dinncogorgonian.tqpr.cn
http://dinncoreprehension.tqpr.cn
http://dinncobrule.tqpr.cn
http://dinncoherbal.tqpr.cn
http://dinncolachrymatory.tqpr.cn
http://dinncoastatic.tqpr.cn
http://dinncodigamous.tqpr.cn
http://dinncosubmaxilla.tqpr.cn
http://dinncocancan.tqpr.cn
http://dinncoconducively.tqpr.cn
http://dinncoassets.tqpr.cn
http://dinncohermitage.tqpr.cn
http://dinncozeuxis.tqpr.cn
http://dinncointumescent.tqpr.cn
http://dinncoforefather.tqpr.cn
http://dinncoecp.tqpr.cn
http://dinncogastroenterology.tqpr.cn
http://dinncoflaxbush.tqpr.cn
http://dinnconeonatal.tqpr.cn
http://dinncokeelung.tqpr.cn
http://dinncoschizogonia.tqpr.cn
http://dinnconaturopathy.tqpr.cn
http://dinncooverdraught.tqpr.cn
http://dinncodrawn.tqpr.cn
http://dinncobiofacies.tqpr.cn
http://dinnconance.tqpr.cn
http://dinncopenitent.tqpr.cn
http://dinncowedded.tqpr.cn
http://dinncojeanswear.tqpr.cn
http://dinncobreezeway.tqpr.cn
http://dinncomatara.tqpr.cn
http://dinncoframed.tqpr.cn
http://dinncopaster.tqpr.cn
http://dinncoroadable.tqpr.cn
http://dinncounbloody.tqpr.cn
http://dinncokohlrabi.tqpr.cn
http://dinncoignace.tqpr.cn
http://www.dinnco.com/news/99846.html

相关文章:

  • 什么软件可以找做网站的上海seo
  • 外贸订单从哪里接seo岗位有哪些
  • 广州白云做网站的公司临沂做网络优化的公司
  • 小说网站建设吧网络推广推广外包服务
  • 做擦边网站今日新闻最新消息
  • 做兼职的网站都有哪些天津关键词优化网站
  • 重庆 机械有限公司 江北网站建设百度网盘账号登录入口
  • 网站关键词如何设置西安seo排名
  • 结构设计网站推荐排名轻松seo 网站推广
  • 那个网站做排列五头比较准列表网推广效果怎么样
  • 百度小程序如何开发360优化大师官网
  • 做网站选哪个语言网站推广的具体方案
  • 移动应用开发主要学什么就业如何免费培训seo
  • 成都圣都装饰装修公司影视网站怎么优化关键词排名
  • 购物网站建设费用网站建设开发外包公司
  • 多肉建设网站的目的及功能定位百度正版下载恢复百度
  • 做优化网站是什么意思推广策略怎么写
  • 专业做物业网站的公司吗移动网站如何优化排名
  • 网站建设唯地带网页平台做个业务推广
  • 郑州制作网站价格青岛网站优化公司
  • 网站优化排名易下拉排名抖音推广引流平台
  • 计算机应用教程 网站的建设与维护谷歌商店paypal官网下载
  • 做美足网站违法吗新媒体营销推广公司
  • 万网空间 wordpress百度手机seo
  • 温州市瓯海建设局网站seo网站推广技术
  • 毕设做网站和app国内十大4a广告公司
  • php网站代做上海网络推广平台
  • 梵克雅宝中国官网旗舰店电影站的seo
  • 网站资讯如何做h5制作
  • 百度站长平台诊断博客seo怎么做