英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

Smalltalk    音標拼音: [sm'ɔlt,ɔk]
The pioneering {object-oriented programming} system
developed in 1972 by the Software Concepts Group, led by {Alan
Kay}, at {Xerox PARC} between 1971 and 1983. It includes a
language, a programming environment, and an extensive object
library.

Smalltalk took the concepts of {class} and {message} from
{Simula-67} and made them all-pervasive. Innovations included
the {bitmap display}, windowing system, and use of a {mouse}.

The {syntax} is very simple. The fundamental construction is
to send a message to an {object}:

object message

or with extra parameters

object message: param1 secondArg: param2 .. nthArg: paramN

where "secondArg:" etc. are considered to be part of the
message name.

Five pseudo-variables are defined: "self", "super", "nil",
"true", "false". "self" is the receiver of the current
message. "super" is used to delegate processing of a message
to the {superclass} of the receiver. "nil" is a reference to
"nothing" (an instance of UndefinedObject). All variables
initially contain a reference to nil. "true" and "false" are
{Booleans}.

In Smalltalk, any message can be sent to any object. The
recipient object itself decides (based on the message name,
also called the "message selector") how to respond to the
message. Because of that, the {multiple inheritance} system
included in the early versions of Smalltalk-80 appeared to be
unused in practice. All modern implementations have single
inheritance, so each class can have at most one superclass.

Early implementations were {interpreted} but all modern ones
use {dynamic translation} (JIT).

Early versions were Smalltalk-72, Smalltalk-74, Smalltalk-76
(inheritance taken from Simula, and concurrency), and
Smalltalk-78, {Smalltalk-80}. Other versions include {Little
Smalltalk}, {Smalltalk/V}, {Kamin's interpreters}. Current
versions are {VisualWorks}, {Squeak}, {VisualAge}, {Dolphin
Smalltalk}, {Object Studio}, {GNU Smalltalk}.

See also: {International Smalltalk Association}.

{UIUC Smalltalk archive (http://st-www.cs.uiuc.edu/)}.
{FAQ (http://XCF.Berkeley.EDU/pub/misc/smalltalk/FAQ/)}.

{Usenet} newsgroup: {news:comp.lang.smalltalk}.

["The Smalltalk-76 Programming System Design and
Implementation", D.H. Ingalls, 5th POPL, ACM 1978, pp. 9-16].

(2001-09-11)

請選擇你想看的字典辭典:
單詞字典翻譯
Smalltalk查看 Smalltalk 在Google字典中的解釋Google英翻中〔查看〕
Smalltalk查看 Smalltalk 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • 【三步解决】‘pip‘ 不是内部或外部命令,也不是可运行的程序 . . .
    当安装Python后在命令行使用pip出错,通常是因Python的可执行路径未加入环境变量。 解决方案包括:找到Python安装路径下的Scripts文件夹,复制其路径;在系统环境变量的Path中添加该路径;然后在命令提示符中验证pip是否可用。
  • 解决pip 不是内部或外部命令,也不是可运行的程序 或批处理 . . .
    相信你看了不少教程还是没有解决pip的问题 最关键的问题还是在于 没有找到正确的路径。 解决办法: 在cmd中输入 python -m pip install --upgrade pip它会告诉你 WARNING: Ignoring invalid distribution -ip (d:\p…
  • 软件测试|解决‘pip‘ 不是内部或外部命令,也不是可运行的程序 . . .
    Python初学者常遇pip安装问题,如"'pip' 不是内部或外部命令"。 原因包括Python未正确安装、环境变量配置错误等。 解决方法:Windows检查安装及环境变量,重新安装pip;Mac Linux确认Python安装,安装pip并确保目录在PATH中。
  • 【已解决】pip 不是内部或外部命令,也不是可运行的程序
    告别“pip不是内部或外部命令”错误! 本指南聚焦Windows环境,通过清晰的两步法详解环境变量配置,助您立即修复问题,让pip恢复可用。
  • 解决‘pip’不是内部或外部命令的问题-百度开发者中心
    本文介绍了在使用Python的包管理工具pip时,遇到‘pip’不是内部或外部命令的错误的几种可能解决方案,包括检查pip安装、环境变量设置、重新安装pip、检查虚拟环境以及使用py命令代替pip,并引入了百度智能云文心快码(Comate)作为高效编写代码的辅助工具。
  • 【已解决】pip 不是内部或外部命令,也不是可运行的程序或批 . . .
    对于 python 学习者来说,经常需要安装一些第三方的库,经常使用的命令就是 pip install 要安装的库 但是,如果没有配置 pip 的 Path, 那么我们的系统是找不到 pip 命令的,会出现 'pip' 不是内部或外部命令,也不是可运行的程序或批处理文件,如下图所示 因此,需要对 pip 的路径进行配置,能够让我们的计算机识别这个命令。 不论你的计算机上安装的是 Python 还是 Anaconda, 在你计算机上的 安装目录 中都会有一个叫作 Scripts 的目录,这个目录下面就有我们使用的 pip 和 pip3 命令工具,将该目录的绝对路径复制到环境变量中,系统便能够找到并识别 pip 和 pip3 命令。
  • 解决pip 不是内部或外部命令,也不是可运行的程序或批处理 . . .
    大家好,我是Connor,今天我为大家带来解决CMD命令无法直接运行 '点子' 进行安装库的问题。 今天本来想安装库来着,但是苦于pycharm的设置里不知道出了什么原因,无奈只能使用PIP功能来
  • 软件测试|解决‘pip‘ 不是内部或外部命令,也不是可运行的程序 . . .
    当出现错误信息 “‘pip’ 不是内部或外部命令,也不是可运行的程序或批处理文件” 时,这通常意味着在命令行中输入pip命令时,系统无法找到pip可执行文件的位置。 这可能是由于以下几个原因: Python未正确安装:pip是Python的包管理工具,如果Python未正确安装,pip也不会被正确配置。 请确保已经成功安装了Python,并将其添加到系统的环境变量中。 环境变量配置错误:当pip所在的Python的Scripts目录未添加到系统的环境变量PATH中时,系统无法找到pip的可执行文件。 pip未正确安装:在某些情况下,pip可能未正确安装,或者由于某种原因损坏,导致无法使用。 如果我们是Windows系统的电脑,我们可以按照以下步骤解决该问题:
  • 解决 pip 不是内部或外部命令:Python包管理工具的完整教程
    当您在命令行遇到 'pip' 不是内部或外部命令的错误时,通常意味着Python或pip的安装路径未正确添加到系统 环境变量 PATH中。 本文将详细指导您如何诊断此问题,并提供通过检查PATH变量、重新安装Python以及验证安装等多种方法,确保您的Python环境能够正确使用pip进行包管理。 pip 是 python 的包安装程序,用于安装和管理 python 包。 当您在命令行中输入 pip 命令时, 操作系统 会尝试在系统环境变量 path 中定义的目录中查找名为 pip 的可执行文件。 如果找不到,就会报告 "'pip' 不是内部或外部命令,也不是可运行的程序或批处理文件" 这样的错误。 这通常表明: Python 或 pip 未正确安装。
  • python安装完后在cmd里输入pip显示不是内部或者外部命令 . . .
    今天本来想安装库来着,但是苦于pycharm的设置里不知道出了什么原因,无奈只能使用PIP功能来安装库了,但是输入PIP的时候发现'PIP'不是内部或外部命令,也不是可运行的程序或批处理文件,那这个问题该怎么解决呢?





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典