gpt4 book ai didi

progress-4gl - 系统.String :Format limited to 3 input in progress 4gl?

转载 作者:行者123 更新时间:2023-12-04 05:13:56 28 4
gpt4 key购买 nike

函数System.String:Format是否限制为3个输入?

当我这样做时:

DISPLAY System.String:Format("~{0~} ~{1~} ~{2~}", 0, 1, 2).

一切都很好。

但是当我这样做的时候:

DISPLAY System.String:Format("~{0~} ~{1~} ~{2~} ~{3~}", 0, 1, 2, 3).

编译错误:

Impossible to find a method 'Format' with a compatible signature  from class 'System.String'. (14457)

我找到了一个看起来像这样的解决方法:

System.String:Format("~{0~} ~{1~} ~{2~}", 0, 1, System.String:Format("~{0~} ~{1~} ~{2~}", 2, 3, System.String:Format("~{0~} ~{1~} ~{2~}", 4, 5, 6))).

但我觉得它并不优雅。

谢谢!塞巴斯蒂安

更新:

这里是一个示例,其中 format 用于格式化日期时间,前导零和小数点四舍五入。

/* constants */
DEFINE VARIABLE MSG_WELCOME AS CHARACTER NO-UNDO INITIAL "Hello user ~{0~:d6}, your balance account is ~{1~:n2} in date of ~{2~:yyyy-MM-dd}.".

/* declaration */
DEFINE VARIABLE iUserId AS INTEGER NO-UNDO.
DEFINE VARIABLE dtTransaction AS DATETIME NO-UNDO.
DEFINE VARIABLE dBalance AS DECIMAL NO-UNDO.
DEFINE VARIABLE strMessage AS CHARACTER NO-UNDO.

/* initialization */
iUserId = 106.
dtTransaction = DATETIME(10, 31, 2014, 11, 22, 33).
dBalance = 1234.56789.
strMessage = System.String:Format(MSG_WELCOME, iUserId, dBalance, dtTransaction).

/* output */
MESSAGE strMessage VIEW-AS ALERT-BOX INFO BUTTONS OK.

输出: 用户 000106 您好,您的账户余额为 1234,57,日期为 2014-10-31。

最佳答案

通过查看 System.String.Format 的可用重载,这变得不那么神秘了:

public static string Format(string format, object arg0);
public static string Format(string format, params object[] args);
public static string Format(IFormatProvider provider, string format, params object[] args);
public static string Format(string format, object arg0, object arg1);
public static string Format(string format, object arg0, object arg1, object arg2);

通过添加 OpenEdge 不支持 .Net vararg 参数(使用 params 关键字定义)这一事实,它变得很清楚了。您的第一个示例使用最后列出的带有 3 个对象参数的版本,您的第二个示例不起作用,因为没有带有 5 个参数的重载。

但使用 OpenEdge 的可变参数并非不可能。如果我们查看 PDSOE 的自动完成,我们会看到所有 5 个签名都在那里,而 params 关键字被简单地忽略了。这意味着您可以使用带有无限参数的突出显示版本,但您需要将类型为 System.Object 的数组传递给它。

enter image description here

这是如何实现的示例:

DEF VAR v-list AS System.Collections.ArrayList NO-UNDO.

v-list = new System.Collections.ArrayList().

v-list:Add(106).
v-list:Add(DATETIME(10, 31, 2014, 11, 22, 33)).
v-list:Add(1234.56789).
v-list:Add("moo").

MESSAGE System.String:Format("~{0~} ~{1~} ~{2~} ~{3~}", v-list:ToArray())
VIEW-AS ALERT-BOX.

关于progress-4gl - 系统.String :Format limited to 3 input in progress 4gl?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22456547/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com