I have imported the class from my jar file with import enji.lep.Msg;

In my new class (Chat) I want to use a "public void" function from the Msg class imported. the Msg.class haz this public void in it:

public void logEnable(String pName, String pVer) {
    logThis(Msg.oeli + pName + " Edition " + pVer + " enabled.");
}

And in my Chat.class I imported the class which contains logEnable() but I can't do

logEnable(pName, pVer);

Am I doing it wrong? How should I do? :/

link|improve this question

46% accept rate
You are not using the Msg class instance in calling the logEnable in the chat class. – Ahmed Masud Oct 25 '11 at 12:48
feedback

2 Answers

This "functions" are actually methods of classes Msg, Chat etc. To call method of class you have to create instance first, i.e. do something like this:

Msg m = new Msg();
m.logEnable("foo", "bar");
link|improve this answer
Oh awesome! I was just goign to ask the guy below how to make it with that "= new" thing :) – enjikaka Oct 25 '11 at 12:48
feedback

You should be doing:

new Msg().logEnable(pName, pVer);

You need to denote the object you want to call a method on. Here, we are creating a throwaway object. You could also save it to a variable:

Msg msg = new Msg();
msg.logEnable(pName, pVer);

If you just do logEnable(pName, pVer), the compiler will treat this as this.logEnable(pName, pVer), that is, it automatically inserts an object (this) for you.

This is all really basic stuff. I think you need to go through a tutorial first. This looks like homework to me. Have fun learning to program! We all started out with questions like yours ;)

link|improve this answer
Thank you very much! :D – enjikaka Oct 25 '11 at 12:46
It gives me an error.. :( pastebin.com/2kdsE0Wq – enjikaka Oct 25 '11 at 13:07
but that error is unrelated to your question... – Daren Thomas Oct 25 '11 at 13:41
When I put your answer into the code, that happened. So it is related... – enjikaka Oct 25 '11 at 15:04
feedback

Your Answer

 
or
required, but never shown

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