public boolean contains(Object o) {
for (E x : this)
if (x.equals(o))
return true;
return false;
}
Can someone tell me what excatly means "this" in this code? Can I write it without this and how?
public boolean contains(Object o) {
for (E x : this)
if (x.equals(o))
return true;
return false;
}
Can someone tell me what excatly means "this" in this code? Can I write it without this and how?
Here this
represents object on which current method was invoked. For instance if you have a.contains(x)
then inside contains
method this
will return reference to same object as held in a
reference variable.
Since you ware able to use this
in for-each it means that contains
method is placed in class which implements Iterable<E>
interface because for-each can iterate only over:
String[] array = ...; for(String s : array){...}
Iterable<E>
like List<String>
where we can write for(String s : list){...}
To avoid this
you can explicitly add to your method parameter of class which contains this method, like
public boolean contains(YourClass yc, Object o) {
//and use that parameter in loop instead of `this`
for (E x : yc)
if (x.equals(o))
return true;
return false;
}
but this means you would need to call such method in a way a.contains(a,x)
so it needs to repeat a
twice (not to mention it can allow us to pass other instance of our class than a
like a.contains(b,x)
).
To avoid this repetition we can make contains
method static
which will allow to invoke it via YourClass.contains(a,x)
. But this way we need to resign from one of basic OOP concepts - polymorphism - since it doesn't work with static
methods.
Compiler solves it using first solution, so it compiles our methods like they would be written (and we actually CAN write methods that way) as
public boolean contains(YourClass this, Object o) {
// ^^^^^^^^^^^^^^
...
}
Then when we write a.contains(x)
it is compiled as if we would invoke a.contains(a,x)
.
this
is a object of the class that contains your contains()
method. It refers to the object of that class for which the method is executed.
Putting it after the :
of an enhanced for loop means that the class that contains this method must implement Iterable<E>
, since the enhanced for loop can be used to iterate over either arrays or instances of classes that implement the Iterable
interface. This means your class is able to iterate over some collection of E
elements. E
is probably a generic type parameter`.
In order to write your method without this
, you would have to supply a reference to some alternative object that implements Iterable<E>
, but I don't see the point of doing that.
What exactly means
this
in this code?
It is always a reference to the current instance. I assume your class implements the Iterable<T>
interface and overrides the Iterator<T> iterator()
method from it.
The loop is just a syntax sugar for the enhanced for
statement. According to the specification (§14.14.2.):
for ({VariableModifier} UnannType VariableDeclaratorId : Expression) Statement
The type of the Expression must be Iterable or an array type (§10.1), or a compile-time error occurs.
If the type of
Expression
is a subtype ofIterable
, then the translation is as follows.If the type of
Expression
is a subtype ofIterable<X>
for some type argumentX
, then letI
be the typejava.util.Iterator<X>
; otherwise, letI
be the raw typeIterator
.The enhanced for statement is equivalent to a basic for statement of the form:
for (I #i = Expression.iterator(); #i.hasNext(); ) { {VariableModifier} TargetType Identifier = (TargetType) #i.next(); Statement }
Usually, a class implements the Iterable
to provide to an API user the ability of being allowed to iterate over the internal collection hiding the actual implementation.
Can I write it without this and how?
for
.Keyword this
is just a reference to the current object.
Here is a example how can be this
used:
public class Person {
public final String name;
public Person(String name) {
// name = name;
// which one is an argument, and which one is class field?
// by default, both are reference on argument
// using "this" to access class field
this.name = name;
}
public void copyFields(Person other) {
// current object's reference is the same as other object reference
// in other words "this" and "other" are the same instances
// example:
// Person p1 = new Person("a");
// Person p2 = p1; // p2 is now pointing on the same memory address
// // as p1, so both are pointing on the same object
// // stored in memory.
// p1.copyFields(p2);
if (this == other) { // copying from self? useless...
return;
}
this.name = other.name;
}
}
Anything that implements Iterable
interface has method which returns Iterator
instance, which is implicitly used by foreach loop to iterate over items hold by object. Iterator
has methods hasNext()
which returns true
, if there is another object
in iterable container, relative to current position, and next()
which returns
next object
or throws NoSuchElementException
if there is no next object (last invokation of hasNext()
has returned false
).
Here is a simple example of Iterable
implementation with contains
methods:
public class Customer extends Person implements Iterable<Item> {
private final List<Item> list = new LinkedList<>();
public final String name;
public Customer(String name) {
this.name = name;
}
public void add(Item item) {
list.add(item);
}
// implementing iterable interface
@Override
public Iterator<Item> iterator() {
return list.iterator();
}
// some contains implementations
public boolean contains1() {
for (Item item : this) { // customer implements Iterable = OK
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains2() {
for (Item item : list) { // list implements Iterable = OK
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains3(Object o) {
for (Iterator<Item> iter = iterator(); iter.hasNext(); ) {
Item item = iter.next();
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains4(Object o) {
for (Iterator<Item> iter = list.iterator(); iter.hasNext(); ) {
Item item = iter.next();
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains5(Object o) {
Iterator<Item> iter = iterator();
while (iter.hasNext()) {
Item item = iter.next();
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains6(Object o) {
Iterator<Item> iter = list.iterator();
while (iter.hasNext()) {
Item item = iter.next();
if (o.equals(item)) {
return true;
}
}
return false;
}
public boolean contains7(Object o) {
return list.contains(o);
}
}
Methods are defined in classes
, not in objects
.
But they are (generally) invoked from objects
.
Methods - as they are defined in classes
- don't know in advance which object will call them.
So there is a mechanism (implemented by a hidden parameter this
) by which the object - when calling a method - secretively passes the address of itself to parameter this
.
(In other programming languages may be used other names, as Me
or self
.)
I would put it in points for you
When we create a new instance of a class then the non static methods and non static member fields are part of it. We access these methods and fields using .
operator.
All the non static method or member fields has access to this
. The this
keyword simply is a reference to the current object upon which that method is executed upon.
Any class which implements Iterable
interface can be used with enhanced For-Loop
.
Enhanced for loop uses a syntax
for (Object object : objectOfIterableType)
If the class implementing Iterable
interface is parametized, suppose its E
. then its what you have to in your code.
for (E x : this)
this
keyword. In each iteration x
will represent an item from those contained items.