java - Listing source dependencies -


The degree of source code dependency that can be solved by checking the source code for the following programming languages ​​- Java, Python and Lisp

For example, can I definitely say by looking at the collection of Python files which are checking all "import" statements in each file, are only dependencies (source dependencies)?

In Lisp, I'm going to know about the ("filename" load command) which allows a function defined in other files.

  • P> You can import a namespace in Java, but you can also use the full name of the class without any import statement < P> javax.swing.JButton but = new javax.swing.JButton ("MyButton");

  • And last but not least all of them support any kind of symbolic programming. You can use a plain string to load or execute the code:

    Object x = Class.forName ("javax.swing." + CompName); Return x.toString ();

  • Comments