how can I import a file in java programming language

前端 未结 3 1894
面向向阳花
面向向阳花 2021-01-29 11:48

how can I import a file in java programming language

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-29 12:37

    You don't import files in Java. You import classes.

    The syntax is as follows:

    import com.my.Class;
    

    There is nothing like the #include available in C/C++. If you really want to actually "include" files into your source, you need to rethink your design.

提交回复
热议问题