数据库截图
对象是User.Person
代码:Class web.PersonObj Extends %RegisteredObject
{
ClassMethod insertbyobj(name, age, sex)
{
///先生成一个person对象
set person=##class(User.Person).%New()
///对象属性赋值
s...
分类:
数据库 时间:
2015-08-07 22:24:40
阅读次数:
230
目前对于python中@classmethod 类方法和@staticmethod静态方法的有了一定的认识,之后有进一步的认识后继续记录。@classmethod :是和一个class类相关的方法,可以通过类货类实例进行调用,并将该class对象(不是class的实例对象)隐式地当作第一个参数传入。...
分类:
编程语言 时间:
2015-07-30 00:40:55
阅读次数:
135
1.@classmethodand@staticmethodhttp://stackoverflow.com/questions/12179271/python-classmethod-and-staticmethod-for-beginner2. yieldhttp://stackoverflow...
分类:
编程语言 时间:
2015-07-28 07:55:48
阅读次数:
138
普通的方法,第一个参数需要是self,它表示一个具体的实例本身。如果用了staticmethod,那么就可以无视这个self,而将这个方法当成一个普通的函数使用。而对于classmethod,它的第一个参数不是self,是cls,它表示这个类本身。>>> class A(object): de...
分类:
编程语言 时间:
2015-07-01 17:54:10
阅读次数:
120
和属性类似,方法也分实例方法和类方法。
在class中定义的全部是实例方法,实例方法第一个参数 self 是实例本身。
要在class中定义类方法,需要这么写:
class Person(object):
count = 0
@classmethod
def how_many(cls):
return cls.count
def __i...
分类:
编程语言 时间:
2015-06-26 09:22:45
阅读次数:
151
类中三种函数的应用#!/usr/bin/env python
# -*- coding: utf-8 -*-class TClassStatic(object):
def __init__(self, data):
self.data = data def printself(*arg):
# for item in arg:
#...
分类:
编程语言 时间:
2015-05-13 10:14:04
阅读次数:
137
classShoping:
name={}
@staticmethod
defadd():
#name[‘1‘]=(‘name‘)
aa=("print内部方法在调用")
print(aa)
return(aa)
@classmethod
deftest(self):
print("这是我使用类方法调用!")
#returnself.add()
分类:
编程语言 时间:
2015-04-29 15:18:54
阅读次数:
162
一、staticmethod(function)Return a static method for function.A static method does not receive an implicit first argument. To declare a static method, u...
分类:
其他好文 时间:
2015-04-29 13:16:54
阅读次数:
151
本函数是返回一个静态函数对象,主要用来作为静态函数的修饰符。静态函数的特性是可以直接通过类命名空间访问,也就是说没有定义类实例也可以使用此函数;也可以通过类实例来访问。这跟JAVA或C++里的静态函数是一样的作用。与classmethod是有区别,这点要注意。例子:#staticmethod()
class Foo:
@staticmethod
def Add(a, b):
...
分类:
编程语言 时间:
2015-04-26 16:49:47
阅读次数:
146
@staticmethod, @classmethod, @property 用法及作用class Foo(object) : def __init__(self) : self._name = "property test" print "init" de...
分类:
编程语言 时间:
2015-04-13 18:21:34
阅读次数:
145