Como: Implementar conversões definidas pelo usuário entre as estruturas (guia de programação translation from VPE for Csharp)
Este exemplo define duas structs, RomanNumeral e BinaryNumerale demonstra as conversões entre elas.
Exemplo
struct RomanNumeral
{
private int value;
public RomanNumeral(int value) //constructor
{
this.value = value;
}
static public implicit operator RomanNumeral(int value)
{
return new RomanNumeral(value);
}
static public implicit operator RomanNumeral(BinaryNumeral binary)
{
return new RomanNumeral((int)binary);
}
static public explicit operator int(RomanNumeral roman)
{
return roman.value;
}
static public implicit operator string(RomanNumeral roman)
{
return ("Conversion not yet implemented");
}
}
struct BinaryNumeral
{
private int value;
public BinaryNumeral(int value) //constructor
{
this.value = value;
}
static public implicit operator BinaryNumeral(int value)
{
return new BinaryNumeral(value);
}
static public explicit operator int(BinaryNumeral binary)
{
return (binary.value);
}
static public implicit operator string(BinaryNumeral binary)
{
return ("Conversion not yet implemented");
}
}
class TestConversions
{
static void Main()
{
RomanNumeral roman;
BinaryNumeral binary;
roman = 10;
// Perform a conversion from a RomanNumeral to a BinaryNumeral:
binary = (BinaryNumeral)(int)roman;
// Perform a conversion from a BinaryNumeral to a RomanNumeral:
// No cast is required:
roman = binary;
System.Console.WriteLine((int)binary);
System.Console.WriteLine(binary);
// Keep the console window open in debug mode.
System.Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
/* Output:
10
Conversion not yet implemented
*/
Programação robusta
No exemplo anterior, a demonstrativo:
binary = (BinaryNumeral)(int)roman;
executa uma conversão de um RomanNumeral para um BinaryNumeral. Porque não há nenhuma conversão direta de RomanNumeral para BinaryNumeral, a projeção é usada para converter de um RomanNumeral para um inte outra projeção para converter de um int para um BinaryNumeral.
Além disso, a demonstrativo
roman = binary;
executa uma conversão de um BinaryNumeral para um RomanNumeral. Porque RomanNumeral define uma conversão implícita de BinaryNumeral, nenhuma conversão é necessária.
Consulte também
Conceitos
Referência
Operadores de conversão (guia de programação translation from VPE for Csharp)