내가 현재 ("Ada.Text_IO.Put") 제네릭 형식을 인쇄하려고하지만 항상 같은 오류와 함께 실패합니다 일반 유형을 ada에 인쇄하는 방법은 무엇입니까?
missing argument for parameter "Item" in call to "Put" declared at a-tiinio.ads:60, instance at a-inteio.ads:18
expected type "Standard.Integer"
found private type "My_Type" defined at testtype.ads:2
이러한 오류
은 이해하지만 난 내 값을 인쇄하는 방법을 잘 모릅니다 . 다음 줄은 제 일반적인 유형을 보여줍니다.generic
type My_Type is private;
with function "+"(Left: My_Type; Right: My_Type) return My_Type;
package TestType is
...
end TestType;
어떤 도움을 주셔서 감사합니다!