vote up 4 vote down star
2

I'm a n00b in java, but have some OOP experience with actionscript 3, so I'm trying to migrate relying on stuff I know.

I as3 you can create getters and setters using the get and set keywords, meaning you create a method in the class and access data through a property of an instance of that class. I might sound complicated, but it's not. Here's an example:

class Dummy{

private var _name:String;

public function Dummy(name:String=null){
this._name = name;
}

//getter
public function get name():String{
return _name;
}
//setter
public function set name(value:String):void{
//do some validation if necessary
_name = value;
}

}

and I would access name in a object as:

var dummy:Dummy = new Dummy("fred");
trace(dummy.name);//prints: fred
dummy.name = "lolo";//setter
trace(dummy.name);//getter

How would I do that in Java?

Just having some public fields is out of the question. I've noticed that there is this convention of using get and set in front of methods, which I'm ok with.

e.g.

class Dummy{

String _name;

public void Dummy(){}

public void Dummy(String name){
_name = name;
}

public String getName(){
return _name;
}

public void setName(String name){
_name = name;
}

}

I was just wondering if there is an equivalent of as3 getter/setters in java, as in accessing a private field as a field from an instance of the class, but having a method for implementing that internally in the class.

flag

3  
Looks like you're hitting a very sensitive point for java programmers ;) – bbmud May 17 at 17:31
Thanks you to all of your for the input. I'll stick to the java conventions when writing java code from now on :) As for IDEs I've tried Eclipse and NetBeans and I like them both, can't make up my mind. NetBeans have some nice GUI features( just checked the samples). I'll stick to using Terminal for start( for making jars ) and all that, at least until I get on my feet. Beginners opinions on Java: yay: a LOT of power! meh: Must you do everything ? To get anything serious of the ground it seems you need to write a LOT of code. – George Profenza May 17 at 17:44

6 Answers

vote up 3 vote down check

Nope. AS3 getters and setters are an ECMAScript thing. In Java, you're stuck with the getVal() and setVal() style functions--there isn't any syntactic sugar to make things easy for you.

I think Eclipse can help auto-generating those types of things though...

link|flag
1  
So does Netbeans with "Encapsulate Fields" – nxadm May 17 at 18:01
So does Emacs/JDEE with M-x jde-gen-get-set-methods. – Glenn May 17 at 18:45
Yes--Your editor of choice can probably do the same thing. I heard M-x M-butterfly can even write the rest of the program for you :) – zenazn May 18 at 2:37
vote up 1 vote down

Also before adding setters and getters, it might be a good idea to ask yourself why are you exposing the internal data of the Object in question.
I suggests you read this article - http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html

link|flag
Take anything Alan Holub says with a huge grain of salt; he's an encapsulation-as-data-hiding extremist. If you're writing a simulation app, I agree that you don't want to expose state; but for other apps, think of encapsulation as data-protection (control changes to your data) vs data hiding (don't allow others to know you have data) – Scott Stanchfield May 18 at 14:45
I guess one can call Holub an extremist, but Holub point is also brought up by Joshua Bloch, see Effective Java Item 13 - books.google.com/books?id=ZZOiqZQIbRMC&pg=PA6… – KingInk May 18 at 19:59
vote up 2 vote down

I would consider not having the getter or setter as they don't do anything in your case except make the code more complicated. Here is an example without getters or setters.

class Dummy {
  public String name;
  public Dummy(String name) { this.name = name; }
}

Dummy dummy = new Dummy("fred");
System.out.println(dummy.name);//getter, prints: fred
dummy.name = "lolo";//setter
System.out.println(dummy.name);//getter, prints: lolo

IMHO Don't make things more complicated than you need to. It so often the case that adding complexity will suffer from You-Aint-Gonna-Need-It

link|flag
vote up 1 vote down

Sadly, no, there isn't the equivalent language-level support in java.

The get* and set* patterns though are so established in java culture that you'll find strong IDE support for them (e.g., eclipse will make them for you automatically), and if you're working in something that uses the expression language first made for jsps (EL), then you'll be able to use the property notation to access getters and setters.

link|flag
vote up 5 vote down

Your Java code is fine, except that you would,

There are no get and set keywords in Java as in your As3 example. Sorry, it doesn't get better than what you're doing already.

Corrected code:

class Dummy {
  private String name;

  public void Dummy() {}

  public void Dummy(String name) {
    this.name = name;
  }

  public String getName() {
    return this.name;
  }

  public void setName(String name) {
    this.name = name;
  }
}
link|flag
Thanks for the link, I'll stick to the Java conventions when writing Java. And I promise to call properties fields when talking about Java ;) – George Profenza May 17 at 17:45
@George Properties and fields are different concepts. A property may or may not be stored in a field (the area of a circle is a property, and there may be a getArea method, but internally it may be calculated from the radius). – Adam Jaskiewicz May 17 at 17:59
@Adam I thought that functions of a class are referred to as methods(private, public, etc.) and variables of a class are referred to as properties/fields. I'm not 100% sure I follow you're example. You're saying that circle.area and circle.getArea() are both properties of a Circle class ? Thanks for pointing out that the properties and fields are different. – George Profenza May 18 at 7:41
@George: the variables of a class are referred to as fields. A property is a more general concept. A property of a class may be stored explicitly in a field, but it can also be calculated on demand. To elaborate on the cirlce example: we may have a Cirlce class with one field which stores the radius. A circle has at least two properties (radius and area) but only the former is stored. The other can e.g. be queried using getArea() (which internally uses the radius field). – Stephan202 May 18 at 10:20
@Stephan Thanks! Got it now. – George Profenza May 19 at 10:25
vote up 1 vote down

In Java, the only option you have without exposing the internals of your object is to make your own getters and setters as you have in your example.

The convention is to prepend get or set in front of the field which is being altered. So, as in your example, the field name would have getName and setName methods as their corresponding getter and setter, respectively.

link|flag

Your Answer

Get an OpenID
or

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