Calling methods in the JWinAPI [closed]
In Java, what is a call to an API? How to call a method of an API?
I like to call methods i开发者_Python百科n the JWinAPI.
That question cannot be answered without more context. API means "Application Programming Interface". Any part of a program that is explicitly designed to be called from "outside" represents an API. There's APIs everywhere you look, which is why your question makes little sense.
As a beginner for you using Java API probably will be importing some packages using 'import' and then creating objects and using their methods.
精彩评论