SDK: What is it exactly? How it could be useful?

六月ゝ 毕业季﹏ 提交于 2019-12-18 12:54:24

问题


SDK: What is it exactly? How it could be useful? Is it necessary for a developer?

Thanks


回答1:


The acronym SDK stands for Software Development Kit. The term software development kit is generally used to refer to a set of resources made available by a platform vendors to enable development on that particular platform.

The contents of an SDK are very much dependent on what is neccessary to give developers in order for them to successfully build software for that platform.

Typically an SDK will include:

  • API and / or achitecture dcumentation:
    This typically includes information such as class and method documentation and code samples to demonstrate the use of each method or class.
  • Library Files
    Any binary or source file that is neccessary or helpful to developers using the platform. For example, the Windows SDK includes windows.h which is the main header file for Win32 development.
  • Develoopment Tools and Utilities
    Applications created by the platform vendor in order to assist developers in creating applications. These may include compilers or other tools such as emulators and debuggers to enable code to be writen and tested, as well as other applications which are non-essential but useful in software development.
  • Sample Applications
    These are complete, usually small, applications written by the platform vendor in order to demonstrate some specific aspect of the platform. These applications often come with source code to help the developer better understand how the application is using the platform.



回答2:


SDK stands for Software Development Kit. It is essential for a developer to have the SDK for the technology he/she is working on.

For example, Qt SDK contains Designer, Assistant (documentation) and Qt Creator (IDE); and also includes qmake and libraries for developing Qt software.




回答3:


SDK = Software Development Kit

It's a set of tools aimed at developing software for a specific platform or a specific API.

Sometimes it's needed, when it's the only way to get access to the platform/API at all. Other times it's not strictly neccessary (for example when a compiler already comes with the operating system), but it usually makes developing easier.



来源:https://stackoverflow.com/questions/1081864/sdk-what-is-it-exactly-how-it-could-be-useful

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!