Home > Java > javaTutorial > body text

How Do C# and Java Enums Differ?

Linda Hamilton
Release: 2024-11-02 01:07:02
Original
406 people have browsed it

How Do C# and Java Enums Differ?

Understanding the Differences between C# and Java Enums

As a newcomer to C#, navigating through codebases that heavily utilize enums can be challenging, especially coming from a strong Java background. This article aims to demystify the differences between C# and Java enums, empowering you to bridge the gap and harness the full potential of C# enumerations.

Key Differences

  • Simplistic Nature of C# Enums: Unlike Java 1.5 enums, C# enums are admittedly more straightforward in their implementation. They primarily serve as a mechanism for defining a set of named constants, lacking the advanced features present in Java.
  • Extension Methods: To compensate for the limited functionality, C# introduces extension methods, which allow you to add custom functionality to enums without modifying their underlying definition.

Implementing the Famous Planet Enum Example in C

To illustrate the practical application of C# enums and extension methods, let's delve into the iconic Planet enum example used in Sun's Java documentation.

<code class="csharp">using System;

public enum Planet
{
    [PlanetAttr(3.303e+23, 2.4397e6)] MERCURY,
    [PlanetAttr(4.869e+24, 6.0518e6)] VENUS,
    [PlanetAttr(5.976e+24, 6.37814e6)] EARTH,
    [PlanetAttr(6.421e+23, 3.3972e6)] MARS,
    [PlanetAttr(1.9e+27, 7.1492e7)] JUPITER,
    [PlanetAttr(5.688e+26, 6.0268e7)] SATURN,
    [PlanetAttr(8.686e+25, 2.5559e7)] URANUS,
    [PlanetAttr(1.024e+26, 2.4746e7)] NEPTUNE,
    [PlanetAttr(1.27e+22, 1.137e6)] PLUTO
}

public static class Planets
{
    public static double GetSurfaceGravity(this Planet p)
    {
        return G * GetMass(p) / (GetRadius(p) * GetRadius(p));
    }

    public static double GetSurfaceWeight(this Planet p, double otherMass)
    {
        return otherMass * p.GetSurfaceGravity();
    }

    public const double G = 6.67300E-11;

    private static double GetMass(Planet p) => GetAttr(p).Mass;

    private static double GetRadius(Planet p) => GetAttr(p).Radius;

    private static PlanetAttr GetAttr(Planet p) =>
        (PlanetAttr)Attribute.GetCustomAttribute(ForValue(p), typeof(PlanetAttr));

    private static MemberInfo ForValue(Planet p) =>
        typeof(Planet).GetField(Enum.GetName(typeof(Planet), p));
}</code>
Copy after login

In this C# implementation:

  • Custom attributes are used to attach metadata to the enum members instead of using separate classes as in the Java example.
  • Extension methods GetSurfaceGravity and GetSurfaceWeight provide the same functionality as the Java methods with the added convenience of direct access from the Planet enum.
  • The ForValue method returns the field corresponding to the specified enum value, enabling attribute retrieval via reflection.

By utilizing C#'s extension methods, you can extend the functionality of enums to address use cases previously handled by Java's more robust enum implementation. This allows for a smooth transition and effective coding in C#.

The above is the detailed content of How Do C# and Java Enums Differ?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!