swift 中關於open ,public ,fileprivate,private ,internal,修飾的說明

来源:http://www.cnblogs.com/codetime/archive/2016/12/15/6184178.html
-Advertisement-
Play Games

關於 swift 中的open ,public ,fileprivate,private, internal的區別 以下按照修飾關鍵字的訪問約束範圍 從約束的限定範圍大到小的排序進行說明 open,public,fileprivate,private,internal 這幾個修飾詞的作用是用於修飾訪 ...


關於 swift 中的open ,public ,fileprivate,private, internal的區別 以下按照修飾關鍵字的訪問約束範圍 從約束的限定範圍大到小的排序進行說明

open,public,fileprivate,private,internal 這幾個修飾詞的作用是用於修飾訪問級別的。

、open,public 對應的級別是該模塊或者是引用了該模塊的模塊可以訪問 即 a belong to A , B import A 這兩種情況都可以對 a進行訪問

、internal 是在模塊內部可以訪問,在模塊外部不可以訪問,a belong A , B import A, A 可以訪問 a, B 不可以訪問a.

、fileprivate 這個修飾跟名字的含義很像,file private 就是文件之間是private的關係,也就是在同一個source文件中還是可以訪問的,但是在其他文件中就不可以訪問了  a belong to file A, a not belong to file B , 在 file A 中 可以訪問 a,在 file B不可以訪問a

、private 這個修飾約束性比fileprivate的約束性更大,private 作用於某個類,也就是說,對於 class A ,如果屬性a是private的,那麼除了A外其他地方都不能訪問了

 

首先說明一下這裡面的區別在文章結尾英文或鏈接中可以看得到

https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/AccessControl.html#//apple_ref/doc/uid/TP40014097-CH41-ID3

Swift provides five different access levels for entities within your code. These access levels are relative to the source file in which an entity is defined, and also relative to the module that source file belongs to.

  • Open access and public access enable entities to be used within any source file from their defining module, and also in a source file from another module that imports the defining module. You typically use open or public access when specifying the public interface to a framework. The difference between open and public access is described below.

  • Internal access enables entities to be used within any source file from their defining module, but not in any source file outside of that module. You typically use internal access when defining an app’s or a framework’s internal structure.

  • File-private access restricts the use of an entity to its own defining source file. Use file-private access to hide the implementation details of a specific piece of functionality when those details are used within an entire file.

  • Private access restricts the use of an entity to the enclosing declaration. Use private access to hide the implementation details of a specific piece of functionality when those details are used only within a single declaration.

Open access is the highest (least restrictive) access level and private access is the lowest (most restrictive) access level.

Open access applies only to classes and class members, and it differs from public access as follows:

  • Classes with public access, or any more restrictive access level, can be subclassed only within the module where they’re defined.

  • Class members with public access, or any more restrictive access level, can be overridden by subclasses only within the module where they’re defined.

  • Open classes can be subclassed within the module where they’re defined, and within any module that imports the module where they’re defined.

  • Open class members can be overridden by subclasses within the module where they’re defined, and within any module that imports the module where they’re defined.

Marking a class as open explicitly indicates that you’ve considered the impact of code from other modules using that class as a superclass, and that you’ve designed your class’s code accordingly.

Guiding Principle of Access Levels

Access levels in Swift follow an overall guiding principle: No entity can be defined in terms of another entity that has a lower (more restrictive) access level.

For example:

  • A public variable cannot be defined as having an internal, file-private, or private type, because the type might not be available everywhere that the public variable is used.

  • A function cannot have a higher access level than its parameter types and return type, because the function could be used in situations where its constituent types are not available to the surrounding code.

The specific implications of this guiding principle for different aspects of the language are covered in detail below.

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 作者講解在Kotlin中Android擴展是如何替代 findViewById 的。 ...
  • fragment是Activity中用戶界面的一個行為或者是一部分。你可以在一個單獨的Activity上把多個Fragment組合成為一個多區域的UI,並且可以在多個Activity中再使用。你可以認為fragment是activity的一個模塊零件,它有自己的生命周期,接收它自己的輸入事件,並且可 ...
  • 如果要添加一個Notification,可以按照以下幾個步驟 1:獲取NotificationManager: NotificationManager m_NotificationManager=(NotificationManager)this.getSystemService(NOTIFICAT ...
  • Handler使用介紹: Handler根據接收的消息,處理UI更新。Thread線程發出消息,通知Handler更新UI。 Handler mHandler = new Handler() { public void handleMessage(Message msg) { switch (msg ...
  • iOS app記憶體分析套路 Xcode下查看app記憶體使用情況有2中方法: 一.Debug navigator中的Memory 此方法是查看記憶體最簡單直接有效的方法,真機調試時,通過Debug navigator中Memory查看app記憶體,入口如圖 根據這個值查看app記憶體占用,這個記憶體是當前ap ...
  • 安卓指紋認證使用智能手機觸摸感測器對用戶進行身份驗證。Android Marshmallow(棉花糖)提供了一套API,使用戶很容易使用觸摸感測器。在Android Marshmallow之前訪問觸摸感測器的方法不是標準的。 本文地址:http://wuyudong.com/2016/12/15/3 ...
  • 一般接到任務後程式員們通常都開始著手進行技術調研了,但我這活是項目負責人。還有一大堆事情要先期準備,沒人能幫忙。 一、人力配置 考慮的之前已經有一波人搞了大半年,但沒有起色,先期也沒有太大人力需求,所以不指望這批人了。因為是外包收錢按人頭工時算,所以拉幾個自己兄弟填坑。 初期人力配置 服務端x 1、 ...
  • 一.Pull解析方法介紹 除了可以使用SAX和DOM解析XML文件,也可以使用Android內置的Pull解析器解析XML文件。Pull解析器的運行方式與SAX解析器相似。它也是事件觸發的。Pull解析方式讓應用程式完全控制文檔該怎麼樣被解析。比如開始和結束元素事件,使用parser.next()可 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...