gpt4 book ai didi

image - Ada 中的默认整数'image() 宽度

转载 作者:行者123 更新时间:2023-12-02 01:19:24 26 4
gpt4 key购买 nike

如何更改 Ada 中的默认整数'image() 宽度?

我希望能够执行类似 put("this is a number: "& i'img); 的操作,其中 i 例如 5 和让 Ada 输出没有多余空格的数字..

目前我必须做 put("this is a number: "); put(i, 0);...

有什么办法可以解决这个问题吗?

顺便说一句,我知道 X'img 是一个 gnat 扩展:)

最佳答案

尝试如下:

Package K is
Type New_Type is New Integer;
private
Function Image( Item : In New_Type ) Return String;
End K;

Package Body K is
Use Ada.Text_IO;

Function Image( Item : In New_Type ) Return String is
begin
Return ("This is a number: " & Integer'Image(Integer(Item)) );
-- You could also add a local integer variable, say Integer_Value,
-- initialized to Integer(Item) and then use Integer_Value'Img.
end Image;
End K;

关于image - Ada 中的默认整数'image() 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6866877/

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