javac - Execute two seperate classes with one single java command -


is possible execute 2 separate classes 1 single java command?

i run few java programs concurrently (it should start @ same time) project.

example: have 2 java programs a.java , b.java.

compile

javac a.java b.java 

run

java b 

however doesn't work. how else can this?

no, java command not work that.

instead have c.java calls both a & b classes.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -