当前位置 : 主页 > 手机开发 > 其它 >

f# – 记录与单一案例歧视联盟

来源:互联网 收集:自由互联 发布时间:2021-06-22
什么是Pro和Con使用的 type Complex = { real: float; imag: float; } 要么 type Complex = Complex of real: float * imag: float 我对不同情况下的可读性和处理特别感兴趣. 并且在较小程度上,表现. 使用辅助函数
什么是Pro和Con使用的

type Complex = 
    { 
        real: float; 
        imag: float;
    }

要么

type Complex = 
    Complex of 
        real: float * 
        imag: float

我对不同情况下的可读性和处理特别感兴趣.
并且在较小程度上,表现.

使用辅助函数可以从两种方法中获得相同的结果.

记录

type ComplexRec = 
    { 
        real: float 
        imag: float
    }

// Conciseness
let buildRec(r,i) =
    { real = r ; imag = i }

let c = buildRec(1.,5.)

// Built-in field acces
c.imag

联盟类型

type ComplexUnion = 
    Complex of 
        real: float * imag: float

// Built-in conciseness
let c = Complex(1.,5.)

// Get field - Could be implemented as members for a more OO feel
let getImag = function
    Complex(_,i) -> i

getImag c

我想联盟类型的(频繁)分解会影响性能,但我不是这方面的专家.

网友评论