Hi,
I'm trying to for loop through creating initialized constructors with different values on thousands upon thousands of time.
My initial idea was creating constructors like so :
TCPScan tcp1 = new TCPScan(1,5);
TCPScan tcp2 = new TCPScan(6,10);
TCPScan tcp3 = new TCPScan(11,15);
.
.
.
TCPScan tcp65500 = new TCPScan(65531,65535);
But this will take a phenomenon amount of time.
So I was thinking could I do this in a for loop in creating TCPScan constructors with the different values to 65535 as I was trying to do?
Thanks much appreciated
The last initialized constructor 'TCPScan tcp65500 = new TCPScan(65531,65535);' was a guess,, but in around that range.

