Purpose of error identifiers

22 ビュー (過去 30 日間)
Hau Kit Yong
Hau Kit Yong 2019 年 5 月 11 日
コメント済み: Xingwang Yong 2022 年 5 月 22 日
I am curious about the practical uses of error identifiers, for example the 'identifier' property in MException objects.
From the documentation (https://uk.mathworks.com/help/matlab/matlab_prog/capture-information-about-errors.html#bq9tdlq-1), I gather that the identifiers are tags for error statements that make them unique. The docs go on to say that the the identifiers can help better identify the error source and also be used to control the error display. The examples that follow however just show how identifiers are created and extracted, so I struggle to see how it can be useful over say, just returning the 'message' property itself.
Why make error statements unique? What is the utility of the identifiers?

採用された回答

Walter Roberson
Walter Roberson 2019 年 5 月 11 日
It is common for the exact spelling and phrasing and formatting of error messages to evolve. When you go to try/catch an error it is inconvenient to have to update all of the various places that have a particular exact spelling and phrasing to be able to match the changes. Instead it is more convenient to use a token that does not change to represent the error for try/catch purposes, permitting the spelling and phrasing to be changed in just one place.
In particular, using a token to stand in is a practical necessity when you make the program multilingual. When you use a token (error identifier) you can try/catch on just one short representation of the condition and then program in "message catalogs" that hold the translation to a variety of human languages.
  4 件のコメント
Walter Roberson
Walter Roberson 2022 年 5 月 22 日
I do not know if there is a better way to create your own catalog, but the implication is that you could create a matlabroot resources/MyToolbox folder to put the catalogs into.
Xingwang Yong
Xingwang Yong 2022 年 5 月 22 日
@Walter Roberson Thanks, Walter. I've read that answer before asking here. I'll try it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by