forth 音标拼音: [f'ɔrθ]
ad . 向前方,向前
向前方,向前
forth adv 1 :
from a particular thing or place or position (`
forth '
is obsolete ); "
ran away from the lion "; "
wanted to get away from there "; "
sent the children away to boarding school ";
"
the teacher waved the children away from the dead animal "; "
went off to school "; "
they drove off "; "
go forth and preach " [
synonym : {
away }, {
off }, {
forth }]
2 :
forward in time or order or degree ; "
from that time forth ";
"
from the sixth century onward " [
synonym : {
forth }, {
forward },
{
onward }]
3 :
out into view ; "
came forth from the crowd "; "
put my ideas forth "
n 1 :
a river in southern Scotland that flows eastward to the Firth of Forth [
synonym : {
Forth }, {
Forth River }]
Forth \
Forth \,
prep .
Forth from ;
out of . [
Archaic ]
[
1913 Webster ]
Some forth their cabins peep . --
Donne .
[
1913 Webster ]
Forth \
Forth \,
v .[
AS .
for [
eth ],
fr .
for akin to D .
voort ,
G .
fort [
root ]
78 .
See {
Fore }, {
For },
and cf . {
Afford },
{
Further },
adv .]
1 .
Forward ;
onward in time ,
place ,
or order ;
in advance from a given point ;
on to end ;
as ,
from that day forth ;
one ,
two ,
three ,
and so forth .
[
1913 Webster ]
Lucas was Paul '
s companion ,
at the leastway from the sixteenth of the Acts forth . --
Tyndale .
[
1913 Webster ]
From this time forth ,
I never will speak word .
--
Shak .
[
1913 Webster ]
I repeated the Ave Maria ;
the inquisitor bad me say forth ;
I said I was taught no more . --
Strype .
[
1913 Webster ]
2 .
Out ,
as from a state of concealment ,
retirement ,
confinement ,
nondevelopment ,
or the like ;
out into notice or view ;
as ,
the plants in spring put forth leaves .
[
1913 Webster ]
When winter past ,
and summer scarce begun ,
Invites them forth to labor in the sun . --
Dryden .
[
1913 Webster ]
3 .
Beyond a (
certain )
boundary ;
away ;
abroad ;
out .
[
1913 Webster ]
I have no mind of feasting forth to -
night . --
Shak .
[
1913 Webster ]
4 .
Throughly ;
from beginning to end . [
Obs .] --
Shak .
[
1913 Webster ]
{
And so forth }, {
Back and forth }, {
From forth }.
See under {
And }, {
Back },
and {
From }.
{
Forth of }, {
Forth from },
out of . [
Obs .] --
Shak .
{
To bring forth }.
See under {
Bring }.
[
1913 Webster ]
Forth \
Forth \,
n . [
OE .,
a ford . ?
78 .
See {
Frith }.]
A way ;
a passage or ford . [
Obs .] --
Todd .
[
1913 Webster ]
21 Moby Thesaurus words for "
forth ":
ahead ,
alee ,
along ,
away ,
en route to ,
for ,
forward ,
forwards ,
hence ,
off ,
on ,
onward ,
onwards ,
out ,
outward ,
outwardly ,
outwards ,
thence ,
therefrom ,
thereof ,
whence 1 .
An interactive extensible language using
{postfix syntax } and a data stack , developed by Charles
H . Moore in the 1960s . FORTH is highly user -configurable and
there are many different implementations , the following
description is of a typical default configuration .
Forth programs are structured as lists of "words " - FORTH 's
term which encompasses language keywords , primitives and
user -defined {subroutines }. Forth takes the idea of
subroutines to an extreme - nearly everything is a subroutine .
A word is any string of characters except the separator which
defaults to space . Numbers are treated specially . Words are
read one at a time from the input stream and either executed
immediately ("interpretive execution ") or compiled as part of
the definition of a new word .
The sequential nature of list execution and the implicit use
of the data stack (numbers appearing in the lists are pushed
to the stack as they are encountered ) imply postfix syntax .
Although postfix notation is initially difficult , experienced
users find it simple and efficient .
Words appearing in executable lists may be "{primitives }"
(simple {assembly language } operations ), names of previously
compiled procedures or other special words . A procedure
definition is introduced by ":" and ended with ";" and is
compiled as it is read .
Most Forth dialects include the source language structures
BEGIN -AGAIN , BEGIN -WHILE -REPEAT , BEGIN -UNTIL , DO -LOOP , and
IF -ELSE -THEN , and others can be added by the user . These are
"compiling structures " which may only occur in a procedure
definition .
FORTH can include in -line {assembly language } between "CODE "
and "ENDCODE " or similar constructs . Forth primitives are
written entirely in {assembly language }, secondaries contain a
mixture . In fact code in -lining is the basis of compilation
in some implementations .
Once assembled , primitives are used exactly like other words .
A significant difference in behaviour can arise , however , from
the fact that primitives end with a jump to "NEXT ", the entry
point of some code called the sequencer , whereas
non -primitives end with the address of the "EXIT " primitive .
The EXIT code includes the scheduler in some {multi -tasking }
systems so a process can be {deschedule }d after executing a
non -primitive , but not after a primitive .
Forth implementations differ widely . Implementation
techniques include {threaded code }, dedicated Forth
processors , {macros } at various levels , or interpreters
written in another language such as {C }. Some implementations
provide {real -time } response , user -defined data structures ,
{multitasking }, {floating -point } arithmetic , and /or {virtual
memory }.
Some Forth systems support virtual memory without specific
hardware support like {MMUs }. However , Forth virtual memory
is usually only a sort of extended data space and does not
usually support executable code .
FORTH does not distinguish between {operating system } calls
and the language . Commands relating to I /O , {file systems }
and {virtual memory } are part of the same language as the
words for arithmetic , memory access , loops , IF statements , and
the user 's application .
Many Forth systems provide user -declared "vocabularies " which
allow the same word to have different meanings in different
contexts . Within one vocabulary , re -defining a word causes
the previous definition to be hidden from the interpreter (and
therefore the compiler ), but not from previous definitions .
FORTH was first used to guide the telescope at NRAO , Kitt
Peak . Moore considered it to be a {fourth -generation
language } but his {operating system } wouldn 't let him use six
letters in a program name , so FOURTH became FORTH .
Versions include fig -FORTH , FORTH 79 and FORTH 83 .
{FAQs
(http ://complang .tuwien .ac .at /forth /faq /faq -general -2 .html )}.
{ANS Forth standard , dpANS6
(http ://taygeta .com /forth /dpans .html )}.
FORTH Interest Group , Box 1105 , San Carlos CA 94070 .
See also {51forth }, {F68K }, {cforth }, {E -Forth }, {FORML },
{TILE Forth }.
[Leo Brodie , "Starting Forth "].
[Leo Brodie , "Thinking Forth "].
[Jack Woehr , "Forth , the New Model "].
[R .G . Loeliger , "Threaded Interpretive Languages "].
2 . {FOundation for Research and Technology - Hellas }.
(1997 -04 -16 )
安装中文字典英文字典查询工具!
中文字典英文字典工具:
复制到剪贴板
英文字典中文字典相关资料:
请问G1 G1 2 G1 4 G3 4 等管螺纹是多少毫米?还有什么4分6 . . . 请问G1 G1 2 G1 4 G3 4 等管螺纹是多少毫米?还有什么4分6分的直径是多少?G1-内孔的通径公称尺寸是1英寸,25 4毫米,螺纹外径33
Etude de sol G1 obligatoire - 20 messages - ForumConstruire. com La G1 montre que les fondations devront être plus profondes que prévues Notre constructeur nous dit de lui faire confiance car il a l'habitude du sol du secteur concerné et qu'en creusant il verra ou positionner les fondations et nous rétorque que la G1 ne sert a rien sans une G2, qu'il faudra payer à nos frais
G1 G1 2 G1 4 G3 4 等管螺纹是多少毫米?_百度知道 G1管螺纹的内孔通径公称尺寸为1英寸,相当于25 4毫米,外径为33 249毫米,即8分的尺寸。 G1 2管螺纹的内孔通径公称尺寸为1 2英寸,即12 7毫米,外径为20 955毫米,对应于4分的规格。
请问G1 G1 2 G1 4 G3 4 等管螺纹是多少毫米?还有什么4分6 . . . 请问G1 G1 2 G1 4 G3 4 等管螺纹是多少毫米?还有什么4分6分的直径是多少?管螺纹G1指的是内孔通径公称尺寸为1英寸的管螺纹,其直径约为25 4毫米,外径约为33 249毫米。G1 2代
螺纹G1 2``是什么意思?代表多大尺寸螺纹直径?_百度 . . . 螺纹G1 2``是什么意思? 代表多大尺寸螺纹直径? G1 2的螺纹是二分之一寸圆柱管螺纹,外径20 956毫米、中径19 794毫米、底径18 632毫米,牙型55度,每寸14牙,每寸等于25 4毫米。 G 是 55 度非螺纹密封管螺纹,
G1 4螺纹底孔多大? - 百度知道 1 对于G1 4螺纹,底孔应打11 694毫米,换算后约为11 7毫米,因此需要使用相应尺寸的钻头。 2 螺纹底孔尺寸对照表如下: - G1 8:钻孔直径8 8毫米 - G1 4:钻孔直径11 7毫米(老旅) - G3 8:钻孔直径15 2毫米 - G1 2:钻孔直径18 9毫米 - G5 8:钻孔直径21毫米 - G3 4:钻孔直径24 3毫米 - G1:钻孔直径30 5毫米 - G1
螺纹G1 2A与G1 2B的区别,能否通用?_百度知道 G1 2”螺纹参数如下: 螺纹大径=20 956mm,螺纹中径=19 794mm,螺纹小径=18 632mm,每英寸14牙,螺距=1 814mm,螺纹牙型角=55° 扩展资料: 非密封管螺纹主要用于压力较低的水、煤气管道,连接时就加填料或密封质(麻丝、铅丹、聚四氟乙烯胶带等),以防止渗漏。
请问管螺纹是否都是内螺纹?一直分不清G1 2与M20X1. 5 . . . 假设我们有一根水管,其一端是G1 2"的外螺纹,另一端是M20X1 5的内螺纹。 这意味着,我们可以使用一个具有G1 2"内螺纹和M20X1 5外螺纹的转接器来连接这根水管与另一个具有M20X1 5内螺纹的设备或管子。 这样,我们就能够轻松地实现不同螺纹类型之间的转换和连接。
细胞分裂 G1 S G2 M分别代表什么时期 - 百度知道 1、G1期:DNA合前期,合成RNA和 核糖体。 2、S期: DNA复制 期,主要是遗传物质的复制,即DNA、 组蛋白 和复制所需要酶的合成。 3、G2期:DNA合成后期,有丝分裂的准备期,主要是RNA和蛋白质(包括微管蛋白等)的大量合成。 4、M期:细胞裂期,暂离 细胞周期,停止细胞裂执行定物功能,细胞所处期G0
g1-1 2”螺纹螺纹尺寸是多少?_百度知道 g1-1 2”螺纹螺纹尺寸是多少? G1 1 2螺纹的参数如下: 大径尺寸:47 803mm;中径尺寸:6 324±0 180;内螺纹取上差;外螺纹取下差。 小径尺寸:44 845mm;11牙 英寸。 所以G1 1 2螺纹螺距:2 309 ;牙