คือว่า ต้องการชื่อตัวแปร ของ ออปเจ็คของคลาสลูกอะค่ะ แต่เมื่อลองใช้คำสั่ง local () หรือ vars() มันแสดงชื่อของออปเจ็คในคลาสแม่ อย่างเดียวเลยค่ะ ตัวอย่าง code ที่ลองก็

คลาสแม่ค่ะ

class Model(object):

def __init__(self):
        
        print self.__class__.__name__    #  ปริ้นชื่อคลาส   ซึ่ง คลาสลูกก็ปริ้นชื่อได้ค่ะ
       
       #b = call.test_one()   
           print dir()   #  ลอง   
           print locals()  #  ลอง
           print vars()   #   ลอง

คลาสลูก

from Program import Model
from Obj import Obj
call = Obj()
class Student(Model,object):
b = call.test_one()
c = call.test_two()

a = Student()

คลาสที่ ลอง อิมพอร์ตเข้ามา

class Obj:
"Description of Class"
def test_one(self):
pass

def test_two(self):
    print "test_two"

เมื่อ extend คลาส model เข้ามาแล้ว มันไม่ปริ้น ชื่อ b และ c ในคลาสลูกให้ค่ะ แต่ถ้า เรียกฟังก์ชั่นแม่ มันก็ ปริ้น b ออกมานะคะ ไม่ทราบว่า ต้องการรู้ชื่อของobject ที่ คลาสลูก ต้องใช้คำสั่งอะไร ขอคำแนะนำด้วยค่ะ

Hiring! บริษัทที่น่าสนใจ

Carmen Software company cover
Carmen Software
Hotel Financial Solutions
Next Innovation (Thailand) Co., Ltd. company cover
Next Innovation (Thailand) Co., Ltd.
We are web design with consulting & engineering services driven the future stronger and flexibility.
KKP Dime company cover
KKP Dime
KKP Dime บริษัทในเครือเกียรตินาคินภัทร
Kiatnakin Phatra Financial Group company cover
Kiatnakin Phatra Financial Group
Financial Service
Fastwork Technologies company cover
Fastwork Technologies
Fastwork.co เว็บไซต์ที่รวบรวม ฟรีแลนซ์ มืออาชีพจากหลากหลายสายงานไว้ในที่เดียวกัน
Thoughtworks Thailand company cover
Thoughtworks Thailand
Thoughtworks เป็นบริษัทที่ปรึกษาด้านเทคโนโยลีระดับโลกที่คว้า Great Place to Work 3 ปีซ้อน
Iron Software company cover
Iron Software
Iron Software is an American company providing a suite of .NET libraries by engineer for engineers.
CLEVERSE company cover
CLEVERSE
Cleverse is a Venture Builder. Our team builds several tech companies.
Nipa Cloud company cover
Nipa Cloud
#1 OpenStack cloud provider in Thailand with our own data center and software platform.
Bangmod Enterprise company cover
Bangmod Enterprise
The leader in Cloud Server and Hosting in Thailand.
CIMB THAI Bank company cover
CIMB THAI Bank
MOVING FORWARD WITH YOU - CIMB is the leading ASEAN Bank
Bangkok Bank company cover
Bangkok Bank
Bangkok Bank is one of Southeast Asia's largest regional banks, a market leader in business banking
MuvMi (Urban Mobility Tech Co.,Ltd.) company cover
MuvMi (Urban Mobility Tech Co.,Ltd.)
Shape the future of urban mobility towards affordable, clean, and safe solutions
T.N. Digital Solution Co., Ltd. company cover
T.N. Digital Solution Co., Ltd.
TNDS has been involving in every first move of banking’s major digital transformation.
KBTG - KASIKORN Business-Technology Group company cover
KBTG - KASIKORN Business-Technology Group
KBTG - "The Technology Company for Digital Business Innovation"
Siam Commercial Bank Public Company Limited company cover
Siam Commercial Bank Public Company Limited
"Let's start a brighter career future together"
Icon Framework co.,Ltd. company cover
Icon Framework co.,Ltd.
Global Standard Platform for Real Estate แพลตฟอร์มสำหรับธุรกิจอสังหาริมทรัพย์ครบวงจร มาตรฐานระดับโลก
REFINITIV company cover
REFINITIV
The Financial and Risk business of Thomson Reuters is now Refinitiv
H LAB company cover
H LAB
Re-engineering healthcare systems through intelligent platforms and system design.
The Gang Technology Co., Ltd. company cover
The Gang Technology Co., Ltd.
We're a Digital Agency that helps our customers transform their business into digital with ease.
LTMH company cover
LTMH
LTMH มุ่งเน้นการพัฒนาผลิตภัณฑ์ที่สามารถช่วยพันธมิตรของเราให้บรรลุเป้าหมาย
Seven Peaks company cover
Seven Peaks
We Drive Digital Transformation
Wisesight (Thailand) Co., Ltd. company cover
Wisesight (Thailand) Co., Ltd.
The Best Choice For Handling Social Media · High Expertise in Social Data · Most Advanced and Secure
MOLOG Tech company cover
MOLOG Tech
We are Modern Logistic Platform, Specialize in WMS, OMS and TMS.
Data Wow Co.,Ltd company cover
Data Wow Co.,Ltd
We enable our clients to realize increased productivity by solving their most complex issues by Data
LINE Company Thailand company cover
LINE Company Thailand
LINE, the world's hottest mobile messaging platform, offers free text and voice messaging + Call
LINE MAN Wongnai company cover
LINE MAN Wongnai
Join our journey to becoming No.1 food platform in Thailand

luckyman Wed, 02/09/2009 - 03:00

แบบนี้รึเปล่าครับ

class Obj:
"Description of Class"
def test_one(self): pass
def test_two(self): print "test_two"

call = Obj()

class Model(object):
def init(self):
print self.class.name
b = call.test_one()
print locals()

class Student(Model, object):
b = call.test_one()
c = call.test_two()

ผลลัพธ์

a = Model()
Model
{'self': <main.Model object at 0x0000000002A39240>, 'b': None}

b = Student()
Student
{'self': <main.Student object at 0x0000000002A32E80>, 'b': None}

จัดฟอร์แมทโค้ดแบบนี้นะครับ

<code lang="python">
class Obj:
    "Description of Class"
    def test_one(self): pass
    def test_two(self): print "test_two"
</code>

punpungpan Wed, 02/09/2009 - 10:25

ขอบคุณมากค่ะ ที่สอนจัด ฟอร์แมทให้ เพิ่งเข้ามาโพสต์เป็นครั้งแรกเลยค่ะ

ให้ Student เป็น คลาสลูกอะค่ะ แล้วต้องการตัวแปรของ

b = call.test_one()
c = call.test_two()

ต้องการให้มันแสดง b กับ c ใน คลาส Student อะค่ะ หรือว่า ถ้า ประกาศเป็น

b = call.test_one()
c = call.test_two()
w = call.test_two() # เพิ่มขึ้นมา

ก็มา print w เพิ่มมาด้วยอะค่ะ คือว่า หนูต้อการเอาชื่อของ object พวกนี้ ไปสร้างเป็นอย่างอื่นอีกทีอะค่ะ

ขอบคุณมากค่ะ

luckyman Wed, 02/09/2009 - 23:45

ไม่ค่อยเข้าใจที่อธิบายนะครับ นี่เดาล้วนๆ

คิดว่าต้องการ bind method จาก Obj อื่นเข้ามาเป็น property ของ Model แล้วให้สืบทอดมาที่ Student ด้วย

class Obj:
"Description of Class"
def test_one(self): pass
def test_two(self): print "test_two"

call = Obj()

class Model:
b = call.test_one
c = call.test_two
def init(self):
print self.class.name

class Student(Model):
w = call.test_two

ผลรัน

a = Model()
Model
b = Student()
Student

dir(a)
['doc', 'init', 'module', 'b', 'c']

dir(b)
['doc', 'init', 'module', 'b', 'c', 'w']

a.c()
test_two

b.c()
test_two

b.w()
test_two