DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • The Unreasonable Effectiveness of the Actor Model for Creating Agentic LLM Applications
  • Why and How To Integrate Elastic APM in Apache JMeter
  • Transitioning From Groovy to Kotlin for Gradle Android Projects
  • Streamlining Your Workflow With the Jenkins HTTP Request Plugin: A Guide to Replacing CURL in Scripts

Trending

  • I Built a VS Code Extension to Debug Azure AI Foundry Agents Without Leaving My Editor
  • The Hidden Cost of AI-Generated Frontend Code
  • Metal Default, a New Build Cloud, and a New Format
  • 7 Technology Waves I’ve Seen in 30 Years of Software — Will AI Be the Next Real Transformation?
  1. DZone
  2. Coding
  3. Languages
  4. Groovy 2.3 Introduces Traits

Groovy 2.3 Introduces Traits

By 
Michael Scharhag user avatar
Michael Scharhag
·
Apr. 20, 14 · Interview
Likes (2)
Comment
Save
Tweet
Share
24.0K Views

Join the DZone community and get the full member experience.

Join For Free

A few days ago the second beta of Groovy 2.3 got released. One of the major new Groovy 2.3 features are traits. A trait is a reusable set of methods and fields that can be added to one or more classes. A class can be composed out of multiple traits without using multiple inheritance (and therefore avoiding the diamond problem).

Basic usage
The following piece of code shows a basic definition of a trait in Groovy 2.3. 

trait SwimmingAbility {
	def swim() {
		println "swimming.."
	}
}

A trait definition looks very similar to a class definition. This trait defines a single method swim(). We can add this trait to a class using the implements keyword:

class Goldfish implements SwimmingAbility {
	..
}

Now we are able to call the swim() methods on Goldfish objects:

def goldfish = new Goldfish()
goldfish.swim()

So far we could have accomplished the same using inheritance. The difference is that we can add multiple traits to a single class. So let's define another trait:

trait FlyingAbility {
	def fly() {
		println "flying.."
	}
}

We can now create a new class that makes use of both traits:

class Duck implements SwimmingAbility, FlyingAbility {
	..
}

Ducks can swim and fly now: 

def duck = new Duck()
duck.swim()
duck.fly()


this inside traits
Inside traits the this keyword represents the implementing instance. This means you can write the following:

trait FlyingAbility {
	def fly() {
		println "${this.class.name} is flying.."
	}
}

In case of the Duck class from above this will print

Duck is flying..

if we call duck.fly().

A more complex example
Now let's look at an example that shows some more features of Groovy traits 

trait Trader {
	int availableMoney = 0
	private int tradesDone = 0

	def buy(Item item) {
		if (item.price <= availableMoney) {
			availableMoney -= item.price
			tradesDone += 1
			println "${getName()} bought ${item.name}"
		}
	}

	def sell(Item item) {
		..
	}

	abstract String getName()
}

Like Groovy classes traits support properties. Here the property availableMoney will become private and public getter / setter methods will be generated. These methods can be accessed on implementing classes.tradesDone is a private variable that cannot be accessed outside the Trader trait. Within this trait we defined an abstract method getName(). This method has to be implemented by classes that make use of this trait.

Let's create a class that implements our Trader trait:

class Merchant implements Trader {
	String name

	String getName() {
		return this.name
	}
}

A Merchant is now be able to buy items:

def bike = new Item(name: 'big red bike', price: 750)
def paul = new Merchant(name: 'paul')
paul.availableMoney = 2000
paul.buy(bike) // prints "paul bought big red bike"
println paul.availableMoney // 1250


Extending from traits, Overriding and conflict resolution
A trait can inherit functionality from another trait using the extends keyword: 

trait Dealer {
	def getProfit() { ... }
	def deal() { ... }
}

trait CarDealer extends Dealer {
	def deal() { ... }
}

Here the CarDealer trait extends Dealer and overrides the deal() method of Dealer.

Trait methods can also be overwritten in implementing classes:

class OnlineCarDealer implements CarDealer {
	def deal() { ... }
}


If a class implements more than one trait it is possible to create a conflict. That's the case if two or more traits define a method with an identical signature:

trait Car {
	def drive() { ... }
}

trait Bike {
	def drive() { ... }
}

class DrivingThing implements Car, Bike { ... }

In such a situation the last declared trait wins (Bike in this example).

Conclusion
I think traits are a very useful concept and I am happy to see them in Groovy. Other than Groovy mixins traits work at compile time and can therefore be accessed from Java code. For further reading I can recommend the Groovy 2.3 Trait documentation. 

Trait (computer programming) Groovy (programming language)

Published at DZone with permission of Michael Scharhag. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • The Unreasonable Effectiveness of the Actor Model for Creating Agentic LLM Applications
  • Why and How To Integrate Elastic APM in Apache JMeter
  • Transitioning From Groovy to Kotlin for Gradle Android Projects
  • Streamlining Your Workflow With the Jenkins HTTP Request Plugin: A Guide to Replacing CURL in Scripts

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook