double Cosine (double x) {
double result = Math.cos(Math.toRadians(x));
return result;
}
This is not constructor. This is method declaration.
Here
double Cosine(double x){}
is method declaration.
There are some rules for defining a constructor as follows:
1.It has the same name as the
class in which it resides and is syntactically similar to a method.
2.They have no return type, not even void.
3.The constructor
is automatically called immediately after the object is created, before the new operator completes.
As in the above question method
Cousine(double x)
has return type double, it breaks the 2nd rule.
I ran the code on my machine resulted in an error:
test.java:14: cannot find symbol
symbol : constructor Cosine(double)
location: class Cosine
new Cosine(x);
^
1 error
It means that there is no parametrized constructor defined in program.