驼峰命名是Swift编码规范的主要命名方法。
根据命名的内容不同选择小驼峰法或大驼峰法。
小驼峰法:
变量、属性,如studentNumber等。
函数、方法,如balanceAccount、isButtonPressed等。
大驼峰法:
类、结构体、枚举、协议等,如SplitViewController等。
文件名,如BlockOperation.swift。
常量,如MaxStudentNumber。
枚举成员,如ExecutionFailed。
扩张文件,用“原始类型名+扩展名”作为扩展文件名,如NSOperation+Operations.swift。
网友评论