Search:

Type: Posts; User: myahia

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    1,115

    Re: Coupling in Java Code

    Coupling between methods is the concept that two or more methods are reliant on each other in some way. This could involve data sharing or decision making in the child methods using one of its call...
  2. Replies
    7
    Views
    1,115

    Re: Coupling in Java Code

    Public void CalculateStringBuildSpeed(double numOfElements)
    {
    buildString (numOfElements);
    }
    .
    .
    .
    public String buildString(double length) {
    String result = "";
    int...
  3. Replies
    7
    Views
    1,115

    Re: Coupling in Java Code

    Public void CalculateStringBuildSpeed(double
    numOfElements)
    {
    buildString (numOfElements);
    }
    .
    .
    .
    public String buildString(double length) {
    String result = "";
  4. Replies
    7
    Views
    1,115

    Coupling in Java Code

    The the Coupling Corruption Propagation is an OO metric that computed as follows:

    Coupling Corruption Propagation = Number of child methods invoked with the parameters based on the parameters of...
Results 1 to 4 of 4