public class Investment
{
public Investment (double aBalance, double aRate)
{
balance = aBalance;
rate = aRate;
years = 0;
}
public void waitForYears(int y)
{
while (years < y)
{
years++;
balance = balance + balance * rate/100;
}
System.out.println("WaitForYears is" + balance);
}
public void compoundTheIntrest(int y, int n)
{
while (years < y)
{
while (years < n)
{
years++;
balance = balance + balance * rate/100/n;
}
}
System.out.println("Compound is" + balance);
}
private double balance;
private double rate;
private double years;
There is no such thing as overlording in Java.
It is the method that gets called when a Java application is started.
No, Java only allows a method to be defined within a class, not within another method.
In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.
A Java method is a sequence of statements. It is comparable to a function, subroutine, or procedure in other languages.
java exception
The Java superclass Object says that all Java objects have an equals method. Thus Comparator has an equals method.
a method is a variable
The getContentPane() method is used to get the main component in a Java Swing JFrame. It is usually a JPanel.
The final and finally keywords have no impact on the return type of a method in Java.
native is a key word used in java method. there is no variable as native in java
A void method is one that returns no value. The Java main() method is the first method to be called, therefore it doesn't need to return a value to another Java method, therefore it is declared as void. If something needs to be returned to the operating system, this is done differently, not by "returning a value" in the sense of Java.