vote up 2 vote down star

I'm just starting out with F# and I can't find the syntax to do object initialization like in C# 3.

I.e. given this:

public class Person {
  public DateTime BirthDate { get; set; }
  public string Name { get; set; }
}

how do I write the following in F#:

var p = new Person { Name = "John", BirthDate = DateTime.Now };
flag

67% accept rate

2 Answers

vote up 6 vote down check

You can do it like this:

let p = new Person (Name = "John", BirthDate = DateTime.Now);
link|flag
Thank you very much – Mauricio Scheffer Dec 16 '08 at 17:41
vote up 7 vote down

Hi,

the answer from CMS is definitely correct. Here is just one addition that may be also helpful. In F#, you often want to write the type just using immutable properties. When using the "object initializer" syntax, the properties have to be mutable. An alternative in F# is to use named arguments, which gives you a similar syntax, but keeps things immutable:

type Person(name:string, ?birthDate) =
  member x.Name = name
  member x.BirthDate = defaultArg birthDate System.DateTime.MinValue

Now we can write:

let p1 = new Person(name="John", birthDate=DateTime.Now)
let p2 = new Person(name="John")

The code requires you to specify the name, but birthday is an optional argument with some default value.

T.

link|flag
1  
+1 for immutability :-) – CMS Dec 16 '08 at 23:28
Thanks Tomas, but in my case Person is in another assembly and I can't change it :( – Mauricio Scheffer Dec 18 '08 at 13:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.