博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Define a static property for F# class
阅读量:5267 次
发布时间:2019-06-14

本文共 450 字,大约阅读时间需要 1 分钟。

it's quite easy to define a modifiable static property in C# , but in F#,a defined static filed is required  first when the class want to define a static property.

  

type StacitMemberCls() =     //A static filed should be defined first    static let mutable staticFiled = ""            static member StaticProp        with get() = staticFiled        and set(v) = staticFiled <- v

 

转载于:https://www.cnblogs.com/FsharpZack/archive/2012/11/07/2758798.html

你可能感兴趣的文章
C 筛选法找素数
查看>>
TCP为什么需要3次握手与4次挥手(转载)
查看>>
IOC容器
查看>>
Windows 2003全面优化
查看>>
URAL 1002 Phone Numbers(KMP+最短路orDP)
查看>>
web_day4_css_宽度
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
整理推荐的CSS属性书写顺序
查看>>
ServerSocket和Socket通信
查看>>
css & input type & search icon
查看>>
源代码的下载和编译读后感
查看>>
Kafka学习笔记
查看>>
Octotree Chrome安装与使用方法
查看>>
Windows 环境下基于 Redis 的 Celery 任务调度模块的实现
查看>>
趣谈Java变量的可见性问题
查看>>