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()
相关推荐
落落落sss8 分钟前
MQ集群
java·服务器·开发语言·后端·elasticsearch·adb·ruby
2401_8532757329 分钟前
ArrayList 源码分析
java·开发语言
zyx没烦恼29 分钟前
【STL】set,multiset,map,multimap的介绍以及使用
开发语言·c++
lb363636363629 分钟前
整数储存形式(c基础)
c语言·开发语言
feifeikon31 分钟前
Python Day5 进阶语法(列表表达式/三元/断言/with-as/异常捕获/字符串方法/lambda函数
开发语言·python
大鲤余38 分钟前
Rust,删除cargo安装的可执行文件
开发语言·后端·rust
浪里个浪的102441 分钟前
【C语言】从3x5矩阵计算前三行平均值并扩展到4x5矩阵
c语言·开发语言·矩阵
MoFe11 小时前
【.net core】【sqlsugar】字符串拼接+内容去重
java·开发语言·.netcore
Envyᥫᩣ1 小时前
深入浅出C#编程语言
开发语言·c#
朱容君1 小时前
Linux系统编程多线程之读写锁讲解
linux·开发语言