Question: 2. Draw the sequence diagram for the following code. public class SeqDiag { public static void main (String [] args) { func(); } public
2. Draw the sequence diagram for the following code. public class SeqDiag { public static void main (String [] args) { func(); } public void func() { public class ClassA { ClassA objA = new ClassA(); ClassA objB = new ClassA(); int val = objA.get(); int val1 = objB.get(); objA.put(val + 1); objB.put(val1 - 1); static private int num = 10; public int get() { return num; } public void put(int val) { num = val; }
Step by Step Solution
3.27 Rating (139 Votes )
There are 3 Steps involved in it
To create a sequence diagram we need to visually represent the interactions between objects in the g... View full answer
Get step-by-step solutions from verified subject matter experts
