วันจันทร์ที่ 27 กุมภาพันธ์ พ.ศ. 2560

9.92 การซ่อนข้อมูล python

9.92 การซ่อนข้อมูล

การซ่อนข้อมูล

                การซ่อนข้อมูล เป็นวิธีการทางความปลอดภัย หรือการห่อหุ้ม เป็นการป้องกันการเข้าถึงข้อมูลจากภายนอกคลาส วิธีการซ่อนข้อมูลไม่ให้เข้าถึงจากคลาสภายนอกได้ด้วยการใส่เครื่องหมาย __  ที่ด้านหน้าตัวแปร เท่านั้น เช่น __name = ‘Taweerat’ เป็นต้น ตัวอย่างในภาพที่ 9.24 เป็นการเขียนคำสั่งเพื่อซ่อนข้อมูล

source code

class Counter:
    __count = 100

    def Count(self):
        self.__count += 1
        print self.__count


count1 = Counter()
count1.Count()
count1.Count()
count1.Count()
ภาพที่ 9.24  แสดงคำสั่งการซ่อนข้อมูล

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...