Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sex Slave's Java Application
#1
I am a Java Expert on the finally keyword.

Lemme explain:

finally keyword is pretty much just used for cleanup of resources pretty much, although I use
try with resoure statements because they are easier and just I like them.

finally block is ALWAYS EXECUTED whether or not the try succeeds or other shit happens.

However, if the JVM exits there IS a possiblity that the block will not be executed.

So yeah. I think I deserve the Java Expert group for my knowledge of the "finally" keyword.

If anyone here needs help with the finally keyword, PM me plz thx.

Hope to get accepted Pinochio Highfive Pinochio

Also, a quick timer i wrote up:

Code:
public final class Timer {

    private long time;

    public boolean check(int ms) {
        return System.currentTimeMillis() - this.time >= ms;
    }

    public void reset() {
        this.time = System.currentTimeMillis();
    }

}

Works really basic and well. Final because I don't need to extend it.
[5:46:57 PM] afffsdd: and labels are for break not continue
 


Messages In This Thread
Sex Slave's Java Application - by Sex Slave - 01-21-2015, 11:55 AM
RE: Sex Slave's Java Application - by Righteous - 01-21-2015, 12:03 PM
RE: Sex Slave's Java Application - by Sex Slave - 01-21-2015, 12:08 PM
RE: Sex Slave's Java Application - by mibbzz - 01-21-2015, 12:04 PM
RE: Sex Slave's Java Application - by Sex Slave - 01-21-2015, 12:06 PM
RE: Sex Slave's Java Application - by zooty - 01-21-2015, 07:09 PM
RE: Sex Slave's Java Application - by Konloch - 02-05-2015, 01:48 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website