vote up 0 vote down star

Supposing I have a class "Item", which has three member variables: string name, decimal quantity and string unit. I have got public get/set properties on all three.

Sometimes, I want to display quantity as text along with correct unit, eg. 10m or 100 feet.

My question is, is it possible to have some sort of ToString() function for properties too, so that their text output can be customized?

Thanks,

Saurabh.

flag

80% accept rate
Wow so many solutions! Choosing an answer becomes really difficult, as IMO, many of the solutions suggested seem correct and useful. Two points: 1. There is a UI, for now. However, I still want to do that "formatting" inside the object, because it seems to be so inherent of that object, to return its quantity along with the unit, when not getting involved in some calculations. 2. For now, I am going with Fredrik's solution, as it is providing me with a new ready-to-use property, without the "hassles" of a new object for quantity + unit. – virtualmic May 6 at 12:08
@virtualmic - It may be the simplest solution but I don't think it's the correct one. You'll have to pay the maintainability tax of mixing concerns at some point. – Greg Beech May 6 at 12:11
Thank you Greg, for you concern. I will definitely try out other approaches too, as you and Anton have suggested. Thanks again, everyone! – virtualmic May 6 at 12:14

7 Answers

vote up 4 vote down check

What you can do is to make a new (readonly) property returning a formatted version:

public string QuantityAsString
{
    get
    {
        return string.Format("{0} {1}", this.Quantity, this.Unit);
    }
}
link|flag
vote up 0 vote down

A few days ago I implemented the same model. And I made separate classes for Quantity and Unit. It looks like this (it is simplified, in fact there are constructors and overloaded operators):

class Quantity
{
    public decimal Value;
    public UnitOfMeasure Unit;

    public override string ToString() 
    {
        return string.Format("{0} {1}", Value, Unit); 
    }
}

class UnitOfMeasure
{
    public string Name;

    public override string ToString() { return Name; }
}
link|flag
vote up 1 vote down

You could implement the IFormatable interface to have different ToString's

public class Item : IFormattable
{
    public string Name;
    public decimal Quantity;
    public string Unit;

    public override string ToString(string format, IFormatProvider provider)
    {
        switch(format)
        {
            case "quantity": return Quantity + Unit;
            default: return Name;
        }
    }
}

This can be used like this:

Item item = new Item();
Console.WriteLine(item.ToString());
Console.WriteLine("Quantity: {0:quantity}", item);
link|flag
default here should probably throw a FormatException... – Peter Lillevold May 6 at 13:38
Agree, and there should be a case for string.Empty or "" too... – Arjan Einbu May 6 at 14:38
vote up 4 vote down

It sounds like your object model isn't correctly factored. What you probably want to do is abstract Unit and Quantity into another object and then you can override ToString for that. This has the advantage of keeping dependent values together, and allowing you to implement things such as conversions between units in the future (e.g. conversion from inchest to feet etc.), e.g.

public struct Measure
{
    public Measure(string unit, decimal quantity)
    {
        this.Unit = unit;
        this.Quantity = quantity;
    }

    public string Unit { get; private set; }
    public decimal Quantity { get; private set; }

    public override string ToString() 
    { 
        return string.Format("{0} {1}", this.Quantity, this.Unit);
    }
}

public class Item
{
    public string Name { get; set; }
    public Measure Measure { get; set; }

    public override string ToString() 
    { 
        return string.Format("{0}: {1}", this.Name, this.Measure);
    }
}

Note that I made Measure a struct here as it probably has value semantics. If you take this approach you should make it immutable and override Equals/GetHashCode as is appropriate for a struct.

link|flag
vote up 1 vote down

I think the best approach from the code quality point of view is to create class that will wrap value with unit and provide .ToString() there.

link|flag
vote up 6 vote down

Generally speaking, formatting values to appropriate units is not the responsibility of the Item class. Rather, this should be done by some external class.

If, however, you really want to do formatting inside the class, I'd recommend defining a Unit class with implicit conversion operators to convert to decimal or ints and all the required formatting logic.

link|flag
I agree. Formatting is a presentation-layer issue, and shouldn't be encapsulated in the domain-layer entity class. – JacobE May 6 at 11:52
Not necessarily. If the object can do sensible things with its units, such as converting between them etc, then it's something that should very much be in the object itself. And who even says there is a UI? – Greg Beech May 6 at 11:54
@Greg Why then would he want to "display quantity as text"? – Anton Gogolev May 6 at 11:59
@Anton - there are places other than a UI to display things. Trace output, event logs, etc. – Greg Beech May 6 at 12:02
@Greg Then even more so, formatting data for trace output is by no means a responsibility of an object. – Anton Gogolev May 6 at 12:11
show 2 more comments
vote up 1 vote down

You have two options:

  1. Have the ToString() of the parent class automatically append these pieces together into a nice format.
  2. Wrap the properties in classes and provide a ToString() for those classes
link|flag

Your Answer

Get an OpenID
or

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