Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Is there a programming language...

Is there a programming language...

Scheduled Pinned Locked Moved The Lounge
questioncsharpdatabasecomtesting
72 Posts 26 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Phil Martin

    Yes. F# supports units of measurement[^]. For example, you can do this:

    [] type years

    let myAge = 32

    The downside this is strictly language support, and not runtime support. Units are lost at runtime, but it's still pretty handy.

    M Offline
    M Offline
    Marc Clifton
    wrote on last edited by
    #18

    Phil Martin wrote:

    Units are lost at runtime

    Which is unfortunate because I'd possibly like to be able to reflect on the unit of measure. But it's an interesting avenue to explore. Thanks! Marc

    Day 1: Spider Database Navigator Unit Testing Succinctly

    P 1 Reply Last reply
    0
    • R Ron Beyer

      I wouldn't get too excited about it though, its really one of the more horrible C# "features". Try the little program out once, then type out a function that has int's as parameters, Intellisense replaces any occurrence of the type with AgeInYears. And while you can define more than one alias for the same type, Intellisense will pick the last defined one to replace in the preview window. Its also a really good way of making code impossible to follow.

      M Offline
      M Offline
      Marc Clifton
      wrote on last edited by
      #19

      Ron Beyer wrote:

      Its also a really good way of making code impossible to follow.

      No worse than using "var" implicit types, I suspect. ;) Marc

      Day 1: Spider Database Navigator Unit Testing Succinctly

      G 1 Reply Last reply
      0
      • M Marc Clifton

        ...that works "easily" with semantic types? For example, I may have: int age = 51; which completely loses the concept that 51 is an age (in years). What I want is something like: AgeInYears myAge = 51; and yet still be able to specify that I can perform, say, arithmetic operations on "myAge". For example, in C#, I could write:

        class AgeInYears
        {
        public int Value {get;set;}
        }

        ... implement operators on AgeInYears

        But that gets messy real fast - every "semantic type" needs these operators, etc. Furthermore, the unit of measurement is still not handled very elegantly. So, as the question states, are there programming languages out there that are more expressive of semantic types? Marc

        Day 1: Spider Database Navigator Unit Testing Succinctly

        OriginalGriffO Offline
        OriginalGriffO Offline
        OriginalGriff
        wrote on last edited by
        #20

        Annoyingly, int is a sealed type in C#, or all you would have to do is provide the implicit cast operators:

        class AgeInYears : int
        {
        public static implicit operator AgeInYears(int i)
        {
        return (AgeInYears)i;
        }
        public static implicit operator int(AgeInYears a)
        {
        return (int)a;
        }
        }

        But...what is an age plus an age? It's not really anything useful if you think about it. What you should be thinking of here is an Age plus a Timespan equals a DateTime, but then an Age can't really be assigned an integer value unless it already has a Datetime component - perhaps it is relative to the time at which the Age object is instantiated? And don't forget that an Age is not a constant value: it will vary as the application runs... :laugh:

        "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
        "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

        M G 2 Replies Last reply
        0
        • OriginalGriffO OriginalGriff

          Annoyingly, int is a sealed type in C#, or all you would have to do is provide the implicit cast operators:

          class AgeInYears : int
          {
          public static implicit operator AgeInYears(int i)
          {
          return (AgeInYears)i;
          }
          public static implicit operator int(AgeInYears a)
          {
          return (int)a;
          }
          }

          But...what is an age plus an age? It's not really anything useful if you think about it. What you should be thinking of here is an Age plus a Timespan equals a DateTime, but then an Age can't really be assigned an integer value unless it already has a Datetime component - perhaps it is relative to the time at which the Age object is instantiated? And don't forget that an Age is not a constant value: it will vary as the application runs... :laugh:

          M Offline
          M Offline
          Marc Clifton
          wrote on last edited by
          #21

          OriginalGriff wrote:

          Annoyingly, int is a sealed type in C#, or all you would have to do is provide the implicit cast operators:

          Exactly!

          OriginalGriff wrote:

          And don't forget that an Age is not a constant value: it will vary as the application runs...

          I know. :) It was a contrived example.

          OriginalGriff wrote:

          But...what is an age plus an age?

          Yeah, this stuff gets one to really think about the meaning of things. :) Marc

          Day 1: Spider Database Navigator Unit Testing Succinctly

          1 Reply Last reply
          0
          • R Ron Beyer

            I wouldn't get too excited about it though, its really one of the more horrible C# "features". Try the little program out once, then type out a function that has int's as parameters, Intellisense replaces any occurrence of the type with AgeInYears. And while you can define more than one alias for the same type, Intellisense will pick the last defined one to replace in the preview window. Its also a really good way of making code impossible to follow.

            P Offline
            P Offline
            PIEBALDconsult
            wrote on last edited by
            #22

            That's a problem with Intellisense then, not the language. Defining aliases is the one best use for the using directive, but I limit it to complex types like Dictionary-of-Dictionary-of-List kinds of things. Or, you can make a more general alias for a particular type, like using Connection=System.Data.SqlClient.SqlConnection .

            1 Reply Last reply
            0
            • M Marc Clifton

              ...that works "easily" with semantic types? For example, I may have: int age = 51; which completely loses the concept that 51 is an age (in years). What I want is something like: AgeInYears myAge = 51; and yet still be able to specify that I can perform, say, arithmetic operations on "myAge". For example, in C#, I could write:

              class AgeInYears
              {
              public int Value {get;set;}
              }

              ... implement operators on AgeInYears

              But that gets messy real fast - every "semantic type" needs these operators, etc. Furthermore, the unit of measurement is still not handled very elegantly. So, as the question states, are there programming languages out there that are more expressive of semantic types? Marc

              Day 1: Spider Database Navigator Unit Testing Succinctly

              G Offline
              G Offline
              Gary Wheeler
              wrote on last edited by
              #23

              A long time ago, at a defense contractor far, far defunct... The Ada programming language provided a semblance of semantic typing. You could create an 'Age' type that was a subtype of integer. I'm sure the computer scientists would scoff at Ada's limitations, but it does somewhat fit the bill. I don't know the modern language definition (I used it back in the 80's), so it might be more capable now.

              Software Zen: delete this;

              M 1 Reply Last reply
              0
              • M Marc Clifton

                Ron Beyer wrote:

                Its also a really good way of making code impossible to follow.

                No worse than using "var" implicit types, I suspect. ;) Marc

                Day 1: Spider Database Navigator Unit Testing Succinctly

                G Offline
                G Offline
                Gary Wheeler
                wrote on last edited by
                #24

                var has its place. Too many programmers let it escape that place, unfortunately.

                Software Zen: delete this;

                S 1 Reply Last reply
                0
                • OriginalGriffO OriginalGriff

                  Annoyingly, int is a sealed type in C#, or all you would have to do is provide the implicit cast operators:

                  class AgeInYears : int
                  {
                  public static implicit operator AgeInYears(int i)
                  {
                  return (AgeInYears)i;
                  }
                  public static implicit operator int(AgeInYears a)
                  {
                  return (int)a;
                  }
                  }

                  But...what is an age plus an age? It's not really anything useful if you think about it. What you should be thinking of here is an Age plus a Timespan equals a DateTime, but then an Age can't really be assigned an integer value unless it already has a Datetime component - perhaps it is relative to the time at which the Age object is instantiated? And don't forget that an Age is not a constant value: it will vary as the application runs... :laugh:

                  G Offline
                  G Offline
                  Gary Wheeler
                  wrote on last edited by
                  #25

                  You could argue that AgeInYears should be implemented something like this:

                  class AgeInYears
                  {
                  public AgeInYears(DateTime birthdate)
                  {
                  _Birthdate = birthdate;
                  }
                  private DateTime _Birthdate;
                  public int Years
                  {
                  get
                  {
                  return (DataTime.Now - _Birthdate).Days / 365; // yes, I know 365 isn't right; it's just an example, for gosh sakes
                  }
                  }
                  }

                  Software Zen: delete this;

                  OriginalGriffO 1 Reply Last reply
                  0
                  • G Gary Wheeler

                    You could argue that AgeInYears should be implemented something like this:

                    class AgeInYears
                    {
                    public AgeInYears(DateTime birthdate)
                    {
                    _Birthdate = birthdate;
                    }
                    private DateTime _Birthdate;
                    public int Years
                    {
                    get
                    {
                    return (DataTime.Now - _Birthdate).Days / 365; // yes, I know 365 isn't right; it's just an example, for gosh sakes
                    }
                    }
                    }

                    Software Zen: delete this;

                    OriginalGriffO Offline
                    OriginalGriffO Offline
                    OriginalGriff
                    wrote on last edited by
                    #26

                    *cough* :-O I did... Working with Age: it's not the same as a TimeSpan![^]

                    "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                    "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                    G 1 Reply Last reply
                    0
                    • OriginalGriffO OriginalGriff

                      *cough* :-O I did... Working with Age: it's not the same as a TimeSpan![^]

                      G Offline
                      G Offline
                      Gary Wheeler
                      wrote on last edited by
                      #27

                      Yeah, this reeked of prior art but I couldn't be arsed to go looking just to comment on a casual question. :-D

                      Software Zen: delete this;

                      1 Reply Last reply
                      0
                      • M Marc Clifton

                        ...that works "easily" with semantic types? For example, I may have: int age = 51; which completely loses the concept that 51 is an age (in years). What I want is something like: AgeInYears myAge = 51; and yet still be able to specify that I can perform, say, arithmetic operations on "myAge". For example, in C#, I could write:

                        class AgeInYears
                        {
                        public int Value {get;set;}
                        }

                        ... implement operators on AgeInYears

                        But that gets messy real fast - every "semantic type" needs these operators, etc. Furthermore, the unit of measurement is still not handled very elegantly. So, as the question states, are there programming languages out there that are more expressive of semantic types? Marc

                        Day 1: Spider Database Navigator Unit Testing Succinctly

                        G Offline
                        G Offline
                        greydmar
                        wrote on last edited by
                        #28

                        Well This c++ 11 trick is very powerfull, really! I prefer to do all the hard work from scratch (ok, have R #). I believe that this threshold "semantic" is outside the domain of a programming language (commonly, it is a "system domain" concept), because it is difficult to predict the particularities of a user-defined (conversion, comparison, integrity, serialization, etc.).

                        M 1 Reply Last reply
                        0
                        • R Ron Beyer

                          I wouldn't get too excited about it though, its really one of the more horrible C# "features". Try the little program out once, then type out a function that has int's as parameters, Intellisense replaces any occurrence of the type with AgeInYears. And while you can define more than one alias for the same type, Intellisense will pick the last defined one to replace in the preview window. Its also a really good way of making code impossible to follow.

                          B Offline
                          B Offline
                          BillWoodruff
                          wrote on last edited by
                          #29

                          Hi Ron, fyi: Visual Studio 2013 IntelliSense does not suggest, or replace, an int Type with an alias defined in a Using statement.

                          If you seek to aid everyone that suffers in the galaxy, you will only weaken yourself … and weaken them. It is the internal struggles, when fought and won on their own, that yield the strongest rewards… If you care for others, then dispense with pity and sacrifice and recognize the value in letting them fight their own battles." Darth Traya

                          R 1 Reply Last reply
                          0
                          • R Ron Beyer

                            I wouldn't get too excited about it though, its really one of the more horrible C# "features". Try the little program out once, then type out a function that has int's as parameters, Intellisense replaces any occurrence of the type with AgeInYears. And while you can define more than one alias for the same type, Intellisense will pick the last defined one to replace in the preview window. Its also a really good way of making code impossible to follow.

                            B Offline
                            B Offline
                            BillWoodruff
                            wrote on last edited by
                            #30

                            Upvoted ! Before I read your response, I had opened VS 2013, and typed: using AgeInYears = System.Int32; Any time my mind works like yours, I feel better :) bill

                            If you seek to aid everyone that suffers in the galaxy, you will only weaken yourself … and weaken them. It is the internal struggles, when fought and won on their own, that yield the strongest rewards… If you care for others, then dispense with pity and sacrifice and recognize the value in letting them fight their own battles." Darth Traya

                            R 1 Reply Last reply
                            0
                            • B BillWoodruff

                              Upvoted ! Before I read your response, I had opened VS 2013, and typed: using AgeInYears = System.Int32; Any time my mind works like yours, I feel better :) bill

                              If you seek to aid everyone that suffers in the galaxy, you will only weaken yourself … and weaken them. It is the internal struggles, when fought and won on their own, that yield the strongest rewards… If you care for others, then dispense with pity and sacrifice and recognize the value in letting them fight their own battles." Darth Traya

                              R Offline
                              R Offline
                              Ron Beyer
                              wrote on last edited by
                              #31

                              If you only knew how my mind worked :)

                              S 1 Reply Last reply
                              0
                              • B BillWoodruff

                                Hi Ron, fyi: Visual Studio 2013 IntelliSense does not suggest, or replace, an int Type with an alias defined in a Using statement.

                                If you seek to aid everyone that suffers in the galaxy, you will only weaken yourself … and weaken them. It is the internal struggles, when fought and won on their own, that yield the strongest rewards… If you care for others, then dispense with pity and sacrifice and recognize the value in letting them fight their own battles." Darth Traya

                                R Offline
                                R Offline
                                Ron Beyer
                                wrote on last edited by
                                #32

                                Odd, mine does, VS2013 is what I tried that in. When I typed String.Compare( then hit the down arrow to select one of the overloads that had an int, it showed AgeInYears instead of int.

                                B 1 Reply Last reply
                                0
                                • M Marc Clifton

                                  Phil Martin wrote:

                                  Units are lost at runtime

                                  Which is unfortunate because I'd possibly like to be able to reflect on the unit of measure. But it's an interesting avenue to explore. Thanks! Marc

                                  Day 1: Spider Database Navigator Unit Testing Succinctly

                                  P Offline
                                  P Offline
                                  Phil Martin
                                  wrote on last edited by
                                  #33

                                  Yeah, it is unfortunate. In the engineering applications I write, I've created a ScalaryQuantity and a VectorQuantity class. They are just the usual numeric structures which support all the normal arithmetic, but supports keeping track of units, and converting units when necessary. There's a big run time overhead involved, but for me it is worth it because it has helped me catch many errors far earlier in the process of developing new calculations.

                                  1 Reply Last reply
                                  0
                                  • G Gary Wheeler

                                    A long time ago, at a defense contractor far, far defunct... The Ada programming language provided a semblance of semantic typing. You could create an 'Age' type that was a subtype of integer. I'm sure the computer scientists would scoff at Ada's limitations, but it does somewhat fit the bill. I don't know the modern language definition (I used it back in the 80's), so it might be more capable now.

                                    Software Zen: delete this;

                                    M Offline
                                    M Offline
                                    Marc Clifton
                                    wrote on last edited by
                                    #34

                                    Gary Wheeler wrote:

                                    The Ada programming language provided a semblance of semantic typing.

                                    Ah, it does indeed. I've been reading the Ada type stuff - very slick. It's a pity these constructs aren't in other languages. I wonder why not - it seems like it would really help bullet proof code. Then again, like anything else, I bet it can be horribly abused as well. Marc

                                    R G 2 Replies Last reply
                                    0
                                    • M Marc Clifton

                                      ...that works "easily" with semantic types? For example, I may have: int age = 51; which completely loses the concept that 51 is an age (in years). What I want is something like: AgeInYears myAge = 51; and yet still be able to specify that I can perform, say, arithmetic operations on "myAge". For example, in C#, I could write:

                                      class AgeInYears
                                      {
                                      public int Value {get;set;}
                                      }

                                      ... implement operators on AgeInYears

                                      But that gets messy real fast - every "semantic type" needs these operators, etc. Furthermore, the unit of measurement is still not handled very elegantly. So, as the question states, are there programming languages out there that are more expressive of semantic types? Marc

                                      Day 1: Spider Database Navigator Unit Testing Succinctly

                                      H Offline
                                      H Offline
                                      HaBiX
                                      wrote on last edited by
                                      #35

                                      "which completely loses the concept that 51 is an age (in years)." so write int ageInYears = 51; There are many ways to do it in c# (pass the int value in constructor, make an implicit cast operator, ...), but imho the best way is sticking with plain int, as that what "age in years" exactly is.

                                      1 Reply Last reply
                                      0
                                      • R Ron Beyer

                                        If you only knew how my mind worked :)

                                        S Offline
                                        S Offline
                                        Simon ORiordan from UK
                                        wrote on last edited by
                                        #36

                                        My mind doesn't work. So I would use Python. :zzz:

                                        1 Reply Last reply
                                        0
                                        • G Gary Wheeler

                                          var has its place. Too many programmers let it escape that place, unfortunately.

                                          Software Zen: delete this;

                                          S Offline
                                          S Offline
                                          SortaCore
                                          wrote on last edited by
                                          #37

                                          Cue "who let the dogs out" playing for an unreasonably long time in my head...

                                          G 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups