Talk:Reflective programming: Difference between revisions

Content deleted Content added
TuXie (talk | contribs)
remove
 
(8 intermediate revisions by 5 users not shown)
Line 1:
{{Talk header}}
{{WikiProject Computing |class=C |importance=Low |software=y |software-importance=Mid}}
{{WikiProject banner shell|class=C|
{{findsourcesnotice|Reflection|("object oriented" OR "programming (language OR paradigm)" OR "computer (programming OR science)")}}
{{WikiProject Computing |class=C |importance=Low |software=y |software-importance=Mid}}
 
}}
==Is eval reflection?==
 
Line 127 ⟶ 128:
 
<div class="boilerplate" style="background-color: #eeffee; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px dotted #AAAAAA;"><!-- Template:polltop -->
:''The following discussion is an archived debate of the {{{type|proposal}}}. <fontspan colorstyle="color:red;">'''Please do not modify it.'''</fontspan> Subsequent comments should be made in a new section on the talk page. No further edits should be made to this section. ''
 
{{{result|The result of the debate was}}} '''move'''. &mdash;[[User:Nightstallion|<span style="font-variant:small-caps">Nightst</span>]]<font color="green">[[User:Nightstallion/esperanza|<span style="font-variant:small-caps; color:green;">a</span>]]</font>[[User:Nightstallion|<span style="font-variant:small-caps">llion</span>]] [[User talk:Nightstallion|''(?)'']] <sup>[[Wikipedia:WikiProject Elections and Referenda|''Seen this already?'']]</sup> 07:49, 1 April 2006 (UTC)
==Requested move==
 
* [[Computational reflection]] → '''[[Reflection (computer science)]]''' &#133;… Return to previous name now blocked by history, more standard practice to disambiguate a term with the discipline name in parentheses. — [[User:Jon Awbrey|Jon Awbrey]] 04:52, 27 March 2006 (UTC)
----
:''Add *'''Support''' or *'''Oppose''' followed by an optional one-sentence explanation, then sign your opinion with ''<nowiki>~~~~</nowiki>
*'''Support''' --[[User:Soumyasch|Soumyasch]] 05:03, 27 March 2006 (UTC)
 
:''The above discussion is preserved as an archive of the debate. <fontspan colorstyle="color:red;">'''Please do not modify it.'''</fontspan> Subsequent comments should be made in a new section on this talk page. No further edits should be made to this section.''</div><!-- Template:pollbottom -->
 
== Example applications? ==
Line 176 ⟶ 177:
As someone unfamiliar with reflection, this article does a poor job of explaining what it is. I have a decent idea from the example section, but the rest of the article reads like an editorial on reflection, not a description. I think for starters the summary could be improved. It doesn't need to be so long, and it only needs to summarize what reflection is in a short and concise way. It also contains some confusing grammar. For example, "More generally, reflection is an activity in computation that allows an object to have information about the structure and reason about its own computation." Information about the reason about its own computation? I have no idea what that is supposed to mean. It would be great if someone with the knowledge could make this article more clear to people not familiar with the topic. --[[User:JRavn|JRavn]] 15:07, 14 August 2006 (UTC)
:: Agreed. The description is not clear for someone unfamiliar with reflection. [[User:Praslisa|Praslisa]] ([[User talk:Praslisa|talk]]) 21:02, 17 February 2011 (UTC)
:: Indeed, the article doesn't explain anything. This is what's called 'cyber rub bish'. Also, the correction was asked in 2006. It hasn't been done by 2011. Now it is 2018 some 11.5 years later - nothing changed. Now this is why the whole wikipedia is cyber rubbb ish. <!-- Template:Unsigned IP --><small class="autosigned">—&nbsp;Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/115.70.29.185|115.70.29.185]] ([[User talk:115.70.29.185#top|talk]]) 03:53, 22 January 2018 (UTC)</small> <!--Autosigned by SineBot-->
 
== Weak examples ==
All the code examples of reflection just regard what's [[dynamic dispatch]], but reflection is ''much more''. Better example needed. <span style="color: #800000; background-color: #FFFF80; padding: 1px 2px 3px 2px">''Said: [[User talk:Rursus|Rursus]] [[User:Rursus/OTHITPWMEEENAE|☺]] [[User:Rursus|★]]''</span> 17:10, 2 June 2007 (UTC)
 
[[WP:SOFIXIT]] :D --<span style="background-color: #Fda;">''[[User:Soumyasch|<fontspan colorstyle="color:#ff6633;">soum</fontspan>]]'' [[User talk:Soumyasch|(0_o)]]</span> 12:27, 3 June 2007 (UTC)
 
== C# Example doesn't fit ==
Line 226:
 
Truly reflective language, worth mention! The original example:
<sourcesyntaxhighlight lang="rebol">
foo: make object! [
hello: does [print "Hello"]
Line 236:
; with reflection
do get in foo to-word "hello"
</syntaxhighlight>
</source>
 
Fully featured example:
<sourcesyntaxhighlight lang="rebol">
foo: func [/local name code start-mark end-mark] [
name: ask "What is your name?^/"
Line 255:
)
]
</syntaxhighlight>
</source>
Running the code:
<pre>