answersLogoWhite

0

When you create the method, you should have set its command. The format should look something like "blank.doSomething(parameters);"

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is use of user defined data in c?

to create user defined functions the user defined data is needed nd its useful to the programmer to create its own data.


What is a user-defined region?

A user-defined region is one that is classified by use. eg. hydro-electricity region


What is the purpose of the computer program?

you use computer programmin in your every day life; eg. creatig an advert or creating a game.


What cursor type do you use to retrieve multiple recordsets?

user defined cursor


What is the definition of an external method?

An external method can be defined as a method that includes an external modifier. This means the method will be put to use externally rather than internally.


What do you think are defining characteristics of science?

Science is defined by the use of the scientific method.


Did Einstein use the scientific method when creating the quantum theory?

yes he did


Did Martin Cooper use the scientific method when creating the cell phone?

yes he did


Which scanner class method would you use to read integer as input?

The method Scanner.nextInt() returns an integer obtained as user input.


User defined data type in c plus plus?

Use "typedef" : both in C and C++.


What is the method of creating new technology?

We create new technology through the use of engineering.


Is it possible in java that using user defined methods in predefined classes?

public void test(int arg1, int arg2) throws Exception{ ....... } Above is a typical declaration of a user defined method in java. The first word public defines the access modifier for the method. you can use public or private. the second word defines the return type of the method. a void represents no return value. you can have int, String, float etc... third word is the method name. You can have anything except keywords in this The values inside the parenthesis are the arguments. A method can take any number of arguments The throws declaration signifies that this method may throw exceptions. The calling method should have code to handle them.