萌新想请教一下,self可以实现函数之间的变量调用吗?
下面代码有self.**就没有问题,可是下一段代码就错了import math as m
class point:
def __init__(self):
x1 = float(input('请输入x1坐标:'))
y1 = float(input('请输入y1坐标:'))
x2 = float(input('请输入x2坐标:'))
y2 = float(input('请输入y2坐标:'))
self.x1 = x1
self.x2 = x2
self.y1 = y1
self.y2 = y2
class line(point):
def __init__(self):
super().__init__()
def getlen(self):
a = ((self.x1 - self.x2)**2) + ((self.y1 - self.y2)**2)
b = m.sqrt(a)
print('该线段的长度为:' + str(b))
l = line()
l.getlen()
这段代码没有self就报错,可是class line(point)和 super().__init__()不是把参数想,y传进来了吗?错误代码如下:
import math as m
class point:
def __init__(self):
x1 = float(input('请输入x1坐标:'))
y1 = float(input('请输入y1坐标:'))
x2 = float(input('请输入x2坐标:'))
y2 = float(input('请输入y2坐标:'))
class line(point):
def __init__(self):
super().__init__()
def getlen(self):
a = ((x1 - x2)**2) + ((y1 - y2)**2)
b = m.sqrt(a)
print('该线段的长度为:' + str(b))
l = line()
l.getlen()
跪求大佬解惑,那是不是有了self,函数之间的变量也可以相互调用了。 Class A:
vara = '类变量'# 作用域整个类
def __init__(self):
self.varb = '实例变量,对象内的函数间可以调用' # 作用域整个对象
varc = '函数内变量' # 作用域,仅限本函数。
你需要看一下作用域和列变量的基础支持。https://www.runoob.com/python3/python3-namespace-scope.html 有 self 函数就知道是用实例属性了
你这样人家哪知道你用的啥,对于他来说你这跟没定义没区别
类里面的话函数用 实例属性 确实是通用的
白two 发表于 2021-11-18 17:54
有 self 函数就知道是用实例属性了
你这样人家哪知道你用的啥,对于他来说你这跟没定义没区别
类里面的话 ...
好嘞好嘞,谢谢 suchocolate 发表于 2021-11-18 17:52
你需要看一下作用域和列变量的基础支持。https://www.runoob.com/python3/python3-namespace-scope.html
谢谢谢谢
页:
[1]