释义 |
monadenUK
mo·nad M0380100 (mō′năd′)n.1. Philosophy An indivisible, impenetrable unit of substance viewed as the basic constituent element of physical reality in the metaphysics of Leibniz.2. Biology A single-celled microorganism, especially a flagellate protozoan formerly classified in the taxonomic group Monadina. [Latin monas, monad-, unit, from Greek, from monos, single; see men- in Indo-European roots.] mo·nad′ic (mə-năd′ĭk), mo·nad′i·cal adj.mo·nad′i·cal·ly adv.mo′nad·ism n.monad (ˈmɒnæd; ˈməʊ-) npl -ads or -ades (-əˌdiːz) 1. (Philosophy) philosophy a. any fundamental singular metaphysical entity, esp if autonomousb. (in the metaphysics of Leibnitz) a simple indestructible nonspatial element regarded as the unit of which reality consistsc. (in the pantheistic philosophy of Giordano Bruno) a fundamental metaphysical unit that is spatially extended and psychically aware2. (Biology) a single-celled organism, esp a flagellate protozoan3. (Chemistry) an atom, ion, or radical with a valency of one Also called (for senses 1, 2): monas [C17: from Late Latin monas, from Greek: unit, from monos alone] moˈnadical adj moˈnadically advmon•ad (ˈmɒn æd, ˈmoʊ næd) n. 1. a flagellated protozoan, esp. of the genus Monas. 2. an element, atom, or group having a valence of one. 3. Philos. an indivisible metaphysical entity, esp. one having an autonomous life. 4. a single unit or entity. [1605–15; < Late Latin monad- (s. of monas) < Greek (s. of monás): unity. See mon-, -ad1] mo•nad•ic (məˈnæd ɪk) mo•nad′i•cal, mo•nad′al, adj. monadany simple, single-cell organism. — monadic, monadical, monadal, adj.See also: CellsmonadSpritual individuality that is reincarnated.ThesaurusNoun | 1. | monad - (chemistry) an atom having a valence of onechemical science, chemistry - the science of matter; the branch of the natural sciences dealing with the composition of substances and their properties and reactionsatom - (physics and chemistry) the smallest component of an element having the chemical properties of the element | | 2. | monad - a singular metaphysical entity from which material properties are said to derivemonas1, ace, one, single, unity, I - the smallest whole number or a numeral representing this number; "he has the one but will need a two and three to go with it"; "they had lunch at one" | | 3. | monad - (biology) a single-celled microorganism (especially a flagellate protozoan)microorganism, micro-organism - any organism of microscopic sizebiological science, biology - the science that studies living organisms | TranslationsmonadenUK
monad: see Bruno, GiordanoBruno, Giordano , 1548–1600, Italian philosopher, b. Nola. The son of a professional soldier, he entered the Dominican order early in his youth and was ordained a priest in 1572, but he was accused of heresy and fled (c.1576) to take up a career of study and travel. ..... Click the link for more information. ; Leibniz, Gottfried Wilhelm, Baron vonLeibniz or Leibnitz, Gottfried Wilhelm, Baron von , 1646–1716, German philosopher and mathematician, b. Leipzig. ..... Click the link for more information. .Monad a concept used in a number of philosophical systems to designate the constituents of existence. In classical philosophy this concept was introduced as the first, or all-explaining, principle by Pythagoreanism, which regarded number and proportion as the source of all things. From the Pythagoreans the concept of the monad was adopted by Plato (the dialogue Philebus) and by the Neoplatonists, who interpreted it pantheistically as the first principle that unfolds and reproduces itself in many things by means of emanation. The concept entered modern philosophy in the pantheism of Nicholas of Cusa and G. Bruno. According to Bruno, monads mirror the infinite universe in accordance with the principle of the unity of the microcosm and the macrocosm. In the 17th century the concept of the monad was important in the philosophy of the Spanish scholastic F. Suárez, the English Platonist Henry More, and the German natural philosopher F. M. van Helmont. It was the pivotal concept for the entire philosophical system of G. W. von Leibniz, who developed the doctrine of monadology. According to his definition, a monad is an ultimate and simple (irreducible) active substance that has a spiritual nature and that apprehends and mirrors the entire world. There is an infinite number of monads, all of which coexist in a state of preestablished harmony. Because the spiritual nature of monads precludes their interaction, harmony among them is reduced to a divinely preestablished cosmic unity. Although it was a classical doctrine of objective idealism, Leibniz’ monadology played an important role in the spread of a dynamic, dialectical view of nature. It contained such ideas as the principle of the universal interrelation of things, the principle of the uniformity of natural laws, the law of conservation, and the concept of universal variability and self-development. After Leibniz the concept of monads was elaborated in the spirit of idealistic rationalism by the followers of C. von Wolff. In the 19th century the ideas of monadology were echoed in the views of a number of German philosophers, including J. Herbart and R. Lotze, and in the 20th century, in the philosophy of E. Husserl (Germany), A. Whitehead (Great Britain), and R. Honigswald (Germany-USA). The monadological approach is the foundation for the philosophical views of many of the representatives of personalism, including C. Renouvier, H. Carr, and J. McTaggart. REFERENCESLenin, V. I. Poln. sobr. soch., 5th ed., vol. 29, pp. 67–76. Cramer, W. Die Monade: Das philosophische Problem von Ursprung. Stuttgart, 1954. Heimsoeth, H. Atom, Seele, Monade.…. Mainz, 1960. Horn, J. C. Monade und Begriff. Wiesbaden-Munich, 1965.G. G. MAIOROV monad1. Philosophya. any fundamental singular metaphysical entity, esp if autonomous b. (in the metaphysics of Leibnitz) a simple indestructible nonspatial element regarded as the unit of which reality consists c. (in the pantheistic philosophy of Giordano Bruno) a fundamental metaphysical unit that is spatially extended and psychically aware 2. a single-celled organism, esp a flagellate protozoan 3. an atom, ion, or radical with a valency of one monad (theory, functional programming)/mo'nad/ A technique fromcategory theory which has been adopted as a way of dealingwith state in functional programming languages in such away that the details of the state are hidden or abstracted outof code that merely passes it on unchanged.
A monad has three components: a means of augmenting anexisting type, a means of creating a default value of this newtype from a value of the original type, and a replacement forthe basic application operator for the old type that workswith the new type.
The alternative to passing state via a monad is to add anextra argument and return value to many functions which haveno interest in that state. Monads can encapsulate state, sideeffects, exception handling, global data, etc. in a purelylazily functional way.
A monad can be expressed as the triple, (M, unitM, bindM)where M is a function on types and (using Haskell notation):
unitM :: a -> M abindM :: M a -> (a -> M b) -> M b
I.e. unitM converts an ordinary value of type a in to monadicform and bindM applies a function to a monadic value afterde-monadising it. E.g. a state transformer monad:
type S a = State -> (a, State)unitS a = \\ s0 -> (a, s0)m `bindS` k = \\ s0 -> let (a,s1) = m s0in k a s1
Here unitS adds some initial state to an ordinary value andbindS applies function k to a value m. (`fun` is Haskellnotation for using a function as an infix operator). Both mand k take a state as input and return a new state as part oftheir output. The construction
m `bindS` k
composes these two state transformers into one while alsopassing the value of m to k.
Monads are a powerful tool in functional programming. If aprogram is written using a monad to pass around a variable(like the state in the example above) then it is easy tochange what is passed around simply by changing the monad.Only the parts of the program which deal directly with thequantity concerned need be altered, parts which merely pass iton unchanged will stay the same.
In functional programming, unitM is often called initM orreturnM and bindM is called thenM. A third function, mapM isfrequently defined in terms of then and return. This appliesa given function to a list of monadic values, threading somevariable (e.g. state) through the applications:
mapM :: (a -> M b) -> [a] -> M [b]mapM f [] = returnM []mapM f (x:xs) = f x `thenM` ( \\ x2 ->mapM f xs `thenM` ( \\ xs2 ->returnM (x2 : xs2) ))monadenUK
monad [mo´nad] 1. a single-celled protozoon or coccus.2. a univalent radical or element.3. in meiosis, one member of a tetrad.mon·ad (mon-'ad), 1. A univalent element or radical. 2. A unicellular organism. 3. In meiosis, the single chromosome derived from a tetrad after the first and second maturation divisions. [G. monas, the number one, unity] monad (mō′năd′)n.1. Philosophy An indivisible, impenetrable unit of substance viewed as the basic constituent element of physical reality in the metaphysics of Leibniz.2. Biology A single-celled microorganism, especially a flagellate protozoan formerly classified in the taxonomic group Monadina. mo·nad′ic (mə-năd′ĭk), mo·nad′i·cal adj.mo·nad′i·cal·ly adv.mo′nad·ism n.mon·ad (mō'nad) 1. A univalent element or radical. 2. A unicellular organism. 3. In meiosis, the single chromosome derived from a tetrad after the first and second maturation divisions. [G. monas, the number one, unity]monad - any single-celled organism.
- a single cell resulting from meiosis (instead of a tetrad).
monadenUK
Synonyms for monadnoun (chemistry) an atom having a valence of oneRelated Words- chemical science
- chemistry
- atom
noun a singular metaphysical entity from which material properties are said to deriveSynonymsRelated Wordsnoun (biology) a single-celled microorganism (especially a flagellate protozoan)Related Words- microorganism
- micro-organism
- biological science
- biology
|