how to declear global "import java.awt.Robot" and "import java.awt.event.*"?

12 次查看(过去 30 天)
I have some function contaning "import java.awt.Robot;" and "import java.awt.event.*;".
How can I define these two commands globally? So that I do not need to add these two commands separately in each function.
  3 个评论
hamze moosapour
hamze moosapour 2021-12-29
Thank you. in fact due to the many functions I wrote, this slows down the program in general. So if these two commands can be included in the main program that do not need to be run every time the program speed is greatly increased.
Geoff Hayes
Geoff Hayes 2021-12-29
I'm surprised that these import commands are slowing down the program. Are you sure that they are the cause of the performance issues?

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2021-12-30
If such a global import is possible, it might destroy Matlab's stability. The imported functions without wildcards have a higher precedence than nested and local functions. With wildcards they are preferred to private functions also. So after a "global" import, all of Matlab's toolbox functions, which use function names, which match the imported functions by accident, will run unexpected code.
Therefore I assume, that such a global import is not possible. And if there is a method to do this, you should avoid it strictly, because it is a shot in your knee.
The import functions should not take a lot of time. For 1e6 calls I do not see a measurable effect. If you call a function much more often, check again, if it is really required to import the functions. Remember that you can call e.g. java.awt.Robot directly also without the need to import before. Creating such an object takes at least 10'000 times longer than importing the function, so if the code is slow, avoid to create the Robots repeatedly, but create one object and share it.
  1 个评论
Walter Roberson
Walter Roberson 2021-12-30
I could imagine import taking a notable amount of time in some cases, such as if the java class path included network folders.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Call Java from MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by