17.12.2015, 12:02 | #1 |
Участник
|
mfp: X++ in AX7: Const keyword
Источник: http://blogs.msdn.com/b/mfp/archive/...t-keyword.aspx
============== In AX7 X++ now supports the const keyword. Semantically it is identical to const in C#. In short; it allows you to define members on a class and variables in a method that can only be initialized during the declaration. The compiler will replace references to these constants with the literal value. In other words, the constant value must be known at compile time. This is a killer feature! It replaces most use cases of macros. void constsAreCool() { #define.magicNumber("AX 2012"); const str magicNumber = "AX7"; info(#magicNumber); info(magicNumber); } There are many benefits:
static class TimeConstants { static const public int DaysPerWeek = 7; static const public int HoursPerDay = 24; static const public int HoursPerWeek = TimeConstants::DaysPerWeek * TimeConstants::HoursPerDay; } Notice how the constants in the class are referenced: TimeConstants::HoursPerWeek This is much clearer than macros: #TimeConstants int x = #HoursPerWeek For example; you are no longer in doubt where the definition is coming from. THIS POST APPLIES TO MICROSOFT DYNAMICS AX7 TECHNICAL PREVIEW; IS PROVIDED AS-IS AND CONFERS NO RIGHTS. ============== Источник: http://blogs.msdn.com/b/mfp/archive/...t-keyword.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
Теги |
ax7 |
|
Похожие темы | ||||
Тема | Ответов | |||
mfp: X++ in AX7: Internal keyword | 25 | |||
mfp: X++ in AX7: Readonly keyword | 3 | |||
mfp: X++ in AX7: Static event subscription | 0 | |||
mfp: X++ in AX7: The var keyword | 43 | |||
mfp: X++ in AX7 | 0 |
|