Jump to content

call methods


lamuria
 Share

Recommended Posts

Se for um método definido dentro da classe onde invocas, basta chamar o método simplesmente. Se está definido noutra classe tens de invocar através da forma: Classe.metodo():

import java.util.*;

public class Classe {
        public static void metodo() {
                System.out.println("Outra classe!");
        }
}

import java.util.*;

public class Teste {
        public static String metodo(String c) {
                return c.toUpperCase();
        }

        public static void main(String[] args) {
                String m = "cenas";
                m=metodo(m);
                System.out.println(m);
                Classe.metodo();
        }
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.