字符串到整数 Smalltalk
非常简单的问题,我需要从用户那里获取一个整数,而我只知道如何从他们那里获取一个字符串。因此,如果有办法从用户那里获取整数或将字符串转换为整数,请告诉我。
Pretty simple question I need to get an integer from the user and I only know how to get a string from them. So if there is a way to get an integer from the user or to convert the string to an integer please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
找到了:
Found it:
如果您使用 Squeak 或 Pharo,请学习使用“消息查找器”。
左键单击背景,单击工具>消息查找器。单击左上方的窗格。输入:
按下 Control-S,你就会得到答案。具体来说,您有三个答案:asInteger、asNumber 和 initialIntegerOrNil。
If you are using Squeak or Pharo, learn to use the "Message Finder".
Left click on the background, click Tools > Message Finder. Click on the top left pane. Type:
Hit Control-S and you have your answer. Specifically, you have three answers: asInteger, asNumber and initialIntegerOrNil.
此页面似乎有一些转换示例。搜索
转化:
。更新
尝试使用
asNumber
This page seems to have some conversion examples. Search for
Conversion:
.UPDATE
Try using
asNumber
有时您会想要处理不同基数的数字。
Occasionally you'll want to handle numbers in different bases.