zoukankan      html  css  js  c++  java
  • 各种开源协议区别

    MIT

    IMO it is the less restrictive license. It gives the rights to anyone to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software. It just requires that the given license is included in all the copies of the code.

    In addition, it clarifies the code does not provide warranty of any kind, and denotes that the authors are not responsible for any problem the code may cause.

    GPL 3.0

    This license is more extensive and descriptive. It gives the rights to anyone to use, copy and modify the software. However, it does not allow sublicensing. i.e. the main difference would be that you can modify the code without including said license if you don't distribute it. It also clearly explains that there is no warranty for the software.

    Apache 2.0

    Has a pretty similar philosophy to the MIT. It gives the rights to anyone to reproduce, copy, modify, publish, distribute, sublicense, and distribute and/or sell copies of the software. It states the code does not provide warranty of any kind too

    Some differences with the MIT license are that:

    • it requires any modified file to carry a note stating those changes.
    • it does not grant permission to use the trademarks or product names of the Licensor.
    • it provides an express grant of patent rights from contributors to users.

    References

    转自:https://github.com/zeppelinos/labs/issues/77

  • 相关阅读:
    strcpy 详解
    c/c++中static详解
    c/c++中const详解
    12、Java中的接口
    11、java中的模板方法设计模式
    10、java中的抽象类
    9、java中的final关键字
    8、java继承中的this和super的应用
    7、java实现的两种单例模式
    6、java中的构造代码块
  • 原文地址:https://www.cnblogs.com/huahuayu/p/8905490.html
Copyright © 2011-2022 走看看