필터 지우기
필터 지우기

Warning: A value of class "x" was indexed with no subscripts specified

조회 수: 3 (최근 30일)
dcnieho
dcnieho 2018년 12월 18일
댓글: dcnieho 2018년 12월 19일
I execute the line java.awt.Toolkit.getDefaultToolkit().getDesktopProperty("awt.multiClickInterval"); to get some info i need in a GUI. Upon executing i get the warning message:
Warning: A value of class "sun.awt.windows.WToolkit" was indexed with no subscripts specified. Currently the result of this operation is the indexed value itself, but in a future release, it will be an error.
There are various reports of this online, with either no answer, or when it occurs in a matlab toolbox itself, an advice to supress the warning. I'd like my code to keep working, so instead would like to understand the error and know how to fix my call. Whats up and how do i fix this?
I'm on MATLAB R2017b, win64.
Thanks!

채택된 답변

Philip Borghesani
Philip Borghesani 2018년 12월 19일
편집: Philip Borghesani 2018년 12월 19일
Break the line into two or remove the extra parentheses.
java.awt.Toolkit.getDefaultToolkit.getDesktopProperty("awt.multiClickInterval");
% or
toolkit=java.awt.Toolkit.getDefaultToolkit; % () is optional here two lines is no slower then one
toolkit.getDesktopProperty("awt.multiClickInterval");
There must be something else going on in your code (import or other lines of code?) because I can't reproduce the warning. I belive the warning is in error and the code will continue to work correctly in future versions.
  댓글 수: 1
dcnieho
dcnieho 2018년 12월 19일
Thanks! Strangely enough, after a restart I cannot reproduce this either. In any case, i have removed the extra parentheses, and it runs just fine.
Thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by