23面向对象案例1

目录

1、计算连续表达式的一个过程

2、优化后的代码

[为什么不能return result+=n?](#为什么不能return result+=n?)

3、用面向对象的方法可以解决冗余的问题,但是还是不能解决result的值可以被随意修改的问题

4、解决不能被随意修改的问题,可以将类属性改成私有变量吗,但是随之而来的问题就是也不能更改读取和访问了

[5、最后用实例对象极限优化,。。我不能理解 为啥一开始不用实例对象来着,不是更容易吗](#5、最后用实例对象极限优化,。。我不能理解 为啥一开始不用实例对象来着,不是更容易吗)


1、计算连续表达式的一个过程

但是这个代码有点冗余,有一点可以修改和优化的地方,具体看如下

python 复制代码
#计算器,实现一些基本操作,如:加减乘除
def jia(n1,n2):
    return n1 +n2
def jian(n1,n2):
    return n1-n2
def cheng(n1,n2):
    return n1*n2
def chu(n1,n2):
    return n1 / n2
# res = jia(3,4)
# print(res)
# res1 = jian(3,8)
# print(res1)
#(2+6-4)*5
r1 = jia(2,6)
r2 = jian(r1,4)
r3 = cheng(r2,5)
print(r3)

2、优化后的代码

python 复制代码
result = 0
def first_value(v):
    global  result
    result = v
def jia(n):
    global result
    result += n
def jian(n):
    global result
    result -= n
def cheng(n):
    global result
    result *= n
def chu(n):
    global result
    result / n
# res = jia(3,4)
# print(res)
# res1 = jian(3,8)
# print(res1)
#(2+6-4)*5
# r1 = jia(2,6)
# r2 = jian(r1,4)
# r3 = cheng(r2,5)
# print(r3)

first_value(2)
jia(6)
jian(4)
cheng(5)
print(result)

为什么不能return result+=n?

在Python中,return 语句用于从函数中返回一个值,并且结束函数的执行。而 result += n 是一个赋值语句,它将 result 的值加上 n 并赋给 result,但它并不返回任何值。

3、用面向对象的方法可以解决冗余的问题,但是还是不能解决result的值可以被随意修改的问题

python 复制代码
class Caculator:
    result = 0
    @classmethod
    def first_value(cls,n):
        cls.result = n
    @classmethod
    def jia(cls,n):
        cls.result += n
    @classmethod
    def jian(cls,n):
        cls.result -=n
    @classmethod
    def cheng(cls,n):
        cls.result *= n
    @classmethod
    def chu(cls,n):
        cls.result /= n
Caculator.first_value(2)
Caculator.jia(6)
Caculator.jian(4)
Caculator.cheng(5)
print(Caculator.result)

4、解决不能被随意修改的问题,可以将类属性改成私有变量吗,但是随之而来的问题就是也不能更改读取和访问了

python 复制代码
class Caculator:
    __result = 0
    @classmethod
    def first_value(cls,n):
        cls.__result = n
    @classmethod
    def jia(cls,n):
        cls.__result += n
    @classmethod
    def jian(cls,n):
        cls.__result -=n
    @classmethod
    def cheng(cls,n):
        cls.__result *= n
    @classmethod
    def chu(cls,n):
        cls.__result /= n
    @classmethod
    def show(cls):
        print('计算的结果是%s'%cls.__result)
Caculator.first_value(2)
Caculator.jia(6)
Caculator.jian(4)
Caculator.cheng(5)
Caculator.show()

改成私有属性,照样可以访问!!!只不过需要在最后面那块加一个显示函数类似于show这种的~~~

5、最后用实例对象极限优化,。。我不能理解 为啥一开始不用实例对象来着,不是更容易吗

python 复制代码
class Caculor():
    def __init__(self,num):
        self.__result = num
    def jia(self,n):
        self.__result += n
    def jian(self,n):
        self.__result -= n
    def cheng(self,n):
        self.__result *= n
    def chu(self,n):
        self.__result /= n
    def show(self):
        self.__result
        print('最终计算结果是%s'%self.__result)
p1 = Caculor(2)

p1.jia(6)
p1.jian(4)
p1.cheng(5)
p1.show()

6、更好的修改是增加一个容错机制

python 复制代码
class Caculator:
    def __init__(self,num):
        if not isinstance(num,int):
            raise TypeError('阿偶,不是一个整型数据哦')
        self.__result=num
    def jia(self,n):
        self.__result += n
    def jian(self,n):
        self.__result -= n
    def cheng(self,n):
        self.__result *= n
    def chu(self,n):
        self.__result /= n
    def show(self):
        print('最终结果是%s'%self.__result)
c1 = Caculator('axc')
c1.jia(6)
c1.jian(4)
c1.cheng(5)
c1.show()
相关推荐
Warson_L10 小时前
Python `Annotated` 与 LangGraph Reducer 学习笔记
python
韩师傅10 小时前
海天线算法的前世今生
python·计算机视觉
韩师傅10 小时前
当你的甲方设备过烂,要如何快速出效果?
python·计算机视觉
Warson_L10 小时前
LangGraph的MessageState and HumanMessage
python
韩师傅11 小时前
当你的甲方吐槽天空不够蓝,你应该如何应对
python·计算机视觉
Warson_L11 小时前
python的类&继承
python
Warson_L12 小时前
类型标注/type annotation
python
ThreeS14 小时前
手搓MiniVLA全实战教程-一步一步用pytorch解释原理与思路
人工智能·python
金銀銅鐵15 小时前
[Python] 模 n 乘法的逆元计算器
python·数学·游戏