settings是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了settings是啥意思相关的知识,希望对你有一定的参考价值。
n. 镶嵌( setting的名词复数 ); 环境; 装置; (某事、戏剧、小说等的)背景1. This machine has two settings: fast and slow. 这种机器有两种可调的速度:快速和慢速。
来自《现代英汉综合大词典》
2. Go to the'settings' menu, 'Data Input & Output' screen. 进入Settings子菜单里的DataInput&Output页面。
来自互联网
3. In addition to the impressiveness of the settings, there is a use of the camera which at times seems magical. 除了布景的感染力外,摄影机的使用技巧有时显出不可思议的效果。
来自《用法词典》
4. Of course, this holds true for its logical settings, too. 当然,逻辑设置也同样如此。
来自About Face 3交互设计精髓
5. I think the settings for this musical comedy is good. 我觉得这个音乐喜剧的布景不错。
1.N-COUNT 可数名词环境;背景;地点 A particular setting is a particular place or type of surroundings where something is or takes place. 【搭配模式】:usu with suppRome is the perfect setting for romance... 罗马是最适合谈情说爱的地方。Perth was the setting for the SNP's conference this year... 珀斯是今年苏格兰国民党大会的召开地。The house is in a lovely setting in the Malvern hills. 房子坐落在莫尔文丘陵地区,周围景色迷人。2.N-COUNT 可数名词(炉具、热水器等上可供调节的)挡,级,点,刻度 A setting is one of the positions to which the controls of a device such as a cooker, stove, or heater can be adjusted. You can boil the fish fillets on a high setting. 可以用高火煮无骨鱼片。3.N-COUNT 可数名词一套餐具 A table setting is the complete set of equipment that one person needs to eat a meal, including knives, forks, spoons, and glasses.
还有一些网络释义
1. 设置
2. 设置关键帧
3. 设置选项
4. 各种系统配置和选项 参考技术A settings 设置
Settings 设置
network settings 网络设定; 网络设置
new settings 新设定
ports-settings 端口设定; 端口设定
print settings 打印格式设置; [计]打印格式设置
welding settings 焊接夹具; 焊接夹具焊接装置
instructional settings 教育环境
current settings 当前设置; [计]当前设置
day settings 日期设定
default settings 设置默认值; [计] 设置默认值
modify view settings 修改视图设置; [计]修改视图设置
save settings on exit 退出时保存设置; [计]退出时保存设置
adjust print settings 调整打印设置; [计]调整打印设置
change system settings 改变系统设置
customizing applet settings 定制小应用程序设定; [计] 定制小应用程序设定
diversity of settings 各种背景; 不同情况
range of time-lag settings 时延调整范围
参考:http://zhidao.baidu.com/question/26355177.html 参考技术B settings, 中文意思: 设置
斯威夫特:这个错误:'private(set)'修饰符不能应用于只读属性是啥意思?
【中文标题】斯威夫特:这个错误:\'private(set)\'修饰符不能应用于只读属性是啥意思?【英文标题】:Swift: What does this error: 'private(set)' modifier cannot be applied to read-only properties mean?斯威夫特:这个错误:'private(set)'修饰符不能应用于只读属性是什么意思? 【发布时间】:2018-01-21 10:40:24 【问题描述】:如果我们可以创建只读的计算属性,我有点困惑:
extension ToMyClass
private(set) var isEmpty: Bool
return head == nil
在尝试创建时出现以下错误:
error: 'private(set)' modifier cannot be applied to read-only properties
【问题讨论】:
【参考方案1】:您正在尝试为计算属性设置修改器,该属性始终是只读的
以下代码取自:The Swift Programming Language (Swift 4)
struct TrackedString
private(set) var numberOfEdits = 0
var value: String = ""
didSet
numberOfEdits += 1
应该是存储属性
【讨论】:
非常感谢。我真的错过了“计算属性,它始终是只读的”【参考方案2】:我遇到了同样的错误,但原因完全不同。我的代码是这样的:
protocol Foo
var bar: String get
class Baz: Foo
private (set) let bar: String // Error
init(bar: String)
self.bar = bar
我只需要改变:
private (set) let bar: String
到:
private (set) var bar: String
let
使属性不可变,这会导致问题。
【讨论】:
以上是关于settings是啥意思的主要内容,如果未能解决你的问题,请参考以下文章