欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

The use of the default package is discouraged.

程序员文章站 2022-05-31 07:57:26
...

The use of the default package is discouraged.(不建议使用默认包)

  1. **错误提示:**The use of the default package is discouraged.
    不建议在默认包下面直接创建类;
    The use of the default package is discouraged.

  2. 可能造成的问题:

    1) java默认包中的public类是不能在其他包中直接调用的
    2)如果尝试解决多个工件中的默认包,则会遇到类加载问题。
    3)您不能再像通常那样使用默认的和受保护的范围了。
    4)在您的代码和其他代码之间没有明显的区别
    

转自:https://www.imooc.com/wenda/detail/575171

  1. 解决方案
    a:在默认包src中添加一个新的包;
    The use of the default package is discouraged.
    b:在创建类时直接在Package后面的输入框中输入包名,系统会自动创建一个包
    The use of the default package is discouraged.