2020-06-30 12:48:07 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
|
|
|
----
|
|
|
|
public double Divide(int divisor, int dividend)
|
|
|
|
{
|
|
|
|
return divisor/dividend;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DoTheThing()
|
|
|
|
{
|
|
|
|
int divisor = 15;
|
|
|
|
int dividend = 5;
|
|
|
|
|
|
|
|
double result = Divide(dividend, divisor); // Noncompliant; operation succeeds, but result is unexpected
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
public double Divide(int divisor, int dividend)
|
|
|
|
{
|
|
|
|
return divisor/dividend;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DoTheThing()
|
|
|
|
{
|
|
|
|
int divisor = 15;
|
|
|
|
int dividend = 5;
|
|
|
|
|
|
|
|
double result = Divide(divisor, dividend);
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
----
|
2021-06-02 20:44:38 +02:00
|
|
|
|
|
|
|
ifdef::rspecator-view[]
|
|
|
|
== Comments And Links
|
|
|
|
(visible only on this page)
|
|
|
|
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::rspecator-view[]
|