@try io > and pay attention about prototyping, it's not easy to extend an object, unfortunatly it's much worst than you think:
oh I agree remember? I said its complicated and confusing. But the nut cases that developed prototyping for SELF thought that it would be an easier alternative to classes, they said so.
of course, I just wanted to show better the hell behind, extending a prototype object to anyone :smile:
Object thinking for BUSINESS:
So as you may know I work in business not software development. Recently I have been applying object thinking to help me organize and direct my operations. This is especially important because I have memory problems and cant remember a lot of small details accurately or for very long. One strategy I am using, is to encapsulate actions with a short time-frame within the action item. So, for example, when I get one or several short-time-frame actions (like emailing a document to a client, preparing an invoice, etc.), I grab the relevant file (or make it) and write down a memo listing the actions. Then I put it in the inbox and FORGET ABOUT IT.
....
Now the entire set of actions (i.e., the behaviors) that need to take place are encapsulated inside of the folder (i.e, the object), and are not visible to the outside (i.e., I forgot what to do). I dont need to remember what actions to take or use a master control list to track the actions. The short time frame means that they wont be relevant for very long, usually not longer than a few hours. They also change quickly. When that happens, I grab the folder, make an edit, and then re-file it in the inbox. While this method is more laborious then one would desire, it is cognitively much less demanding and makes it possible to manage large amounts of important information without burning out.
RayoGundead
I don't know if it's even possible to make an immutable implementation of an observable
@yegor256
I've just seen this article: www.yegor256.com/2015/08/18/multiple-return-statements-in-oop.html
Is it still relevant?
You show an example in comments:
class If implements Number {
private final boolean condition;
private final int left;
private final int right;
If(boolean cnd, int lft, int rgt) {
this.condition = cnd;
this.left = lft;
this.right = rgt;
}
@Override
int intValue() {
if (condition) {
return this.left;
} else {
return this.right;
}
}
}
I've got two questions bout that.
Finally you have just "move" condition in object, so what is the real benefit?
It is only because Object has a state?
And second, you have not respect your own article.
Why do you not do:
if (condition) {
return this.left;
}
return this.right;
And more you respect Object Calisthenics.
@yegor256 You don't have to have anything explicitly static (except for an app entry point) to have a memory leak.
This is a simple memory leak:
public void run() {
var myCustomers = new ArrayList<Customer>();
while (true) {
myCustomers.add(new Customer("John", "Doe));
Thread.sleep(1000);
}
}
static
?
public class App {
Object leakedObject = new Object();
public void start() {
new Thread(new Run()).start();
}
class Run implements Runnable {
@Override
public void run() {
System.out.printf("run");
}
}
}
leakedObject
leaked because class run is not static and this object can be accessed through App.this.leakedObject
from Run
instance
Hi, everybody. I have a question regarding configurable objects.
So, I have this class:
public final class Cached<T>
{
private final Variable<T> variable;
private final Origin<T> origin;
public Cached(Variable<T> variable, Origin<T> origin) {
this.variable = variable;
this.origin = origin;
}
public T value() {
if(!this.variable.initialized()) {
this.variable.initialize(this.origin.value());
}
return this.variable.value();
}
}
It's a class that caches a value. It needs to know what to cache and where to cache it. As you can see, I'm trying to simulate a concept of a variable, where I set a value to it, then reuse it when I need it.
My problem is, I feel this is a configurable object. I'm injecting foreign behaviour in this class through Variable
. It is not a black-box-solid object anymore, a lion's share of its logic is now in the hands of another object. I can pass anything in place of Variable<T>
in the constructor and basically control how this object behaves.
Furthermore, Variable
interface itself reveals a lot of information about Variable
. Since there's a method initialized
and initialize
, I'm almost certain there is an if sentence which checks if a Variable
object holds a value and if it doesn't, sets it. I should not be aware of that.
I discovered this problem while reading one of Yegor's drafts.
Does anyone know what am I supposed to do here? Can't find an alternative.
public final class Cached<T> implements Origin<T>
{
private final List<T> cache = new ArrayList<T>();
private final Origin<T> origin;
public Cached(Origin<T> origin) {
this.origin = origin;
}
public T value() {
if(this.cache.isEmpty()) {
this.cache.add(this.origin.value());
}
return this.cache.get(0);
}
}
@yegor256 "What do you need a man for than?"
Tell that to lesbians that can buy sperm and get pregnant, or simply adopt.
@yegor256 "I got it, but I don't want my daughter to bench someone's desk with one hand and kick someone's ass with the other. I just don't want that :)"
Who the fuck cares what you want? what you should care and what actually matters is what your daugher wants.
@yegor256 And you believe that a society where anyone can be at any position is better than the one where certain people have certain limits?
The only limit there is, is the one you put yourself. None should give a fuck about the limits society puts.
James "Author is a fucking moron. Does he know that a woman invented the first programming language or"
@yegor256 "You made it here: http://www.yegor256.com/tes... Thanks :)"
/Testimonials.html "Author is a fucking moron."
It's funny that in such a small sentence, you leave the good part. Considering some of your testimonials are made of like 15 lines.
@yegor256"I don't have kids yet, but when I will have them I will raise them exactly like my parents raised me: in the gender inequality philosophy.
Translated: In the year 2017, I will raise my kids as kids were raised back in the good old days, where racism, sexism, slavery, all those good things were the norm.
@Yegor256 "We have to live by the laws of the Nature"
No, not really. I live by the laws set by smart/dumb people in my country. That's the only one I actually care.