Tagged Questions
The language-construct tag has no wiki summary.
21
votes
4answers
4k views
What is the difference between a language construct and a “built-in” function in PHP?
I know that include, isset, require, print, echo, and some others are not functions but language constructs.
Some of these language constructs need parentheses, others don't.
require 'file.php';
...
17
votes
3answers
993 views
?: operator PHP [closed]
Possible Duplicate:
What is the PHP ? : operator called and what does it do?
I saw this today in some PHP code.
$items = $items ?: $this->_handle->result('next', $this->_result, ...
16
votes
9answers
308 views
Why would I use java.lang.Class.cast [closed]
Possible Duplicate:
When should I use the java 5 method cast of Class?
I recently stumbled upon a piece of code that went like this:
Object o = .. ;
Foo foo = Foo.class.cast(o);
I was ...
16
votes
20answers
2k views
C++ constructs replacing C constructs
After discussing with a newly arrived developer in my team, I realized that there are still, in C++, habits of using C constructs because they are supposed to be better (i.e. faster, leaner, prettier, ...
13
votes
3answers
471 views
Questions on a Haskell -> C# conversion
Background:
I was "dragged" into seeing this question:
Fibonacci's Closed-form expression in Haskell
when the author initially tagged with many other languages but later focused to a Haskell ...
9
votes
5answers
240 views
Should one avoid certain programming constructs (and others) for maintenance's sake?
I'm working on a non-personal project, so it's safe to say that the maintenance programmer will not be me, for otherwise I wouldn't need to ask this question.
Now there are some constructs ...
8
votes
5answers
2k views
How can I use C# style enumerations in Ruby?
I just want to know the best way to emulate a C# style enumeration in Ruby.
7
votes
5answers
168 views
Are there any other uses of parenthesis in powershell?
As new to Powershell world, sometime I'm stuck in the tricky syntax. That's why I'm trying to figure out all the possible uses of the parenthesis inside the language.
Do you know some more? Can you ...
5
votes
3answers
201 views
What does var {u,v,w} = x; mean in Javascript?
I have seen this in a piece of JS code:
var {status, headers, body} = res;
What does it do?
4
votes
3answers
146 views
In PHP, why wasn't echo implemented as a function? (not echo vs. printf)
I'm just curious. In PHP, why wasn't echo implemented as a function? Why didn't PHP just give us printf and never tell about echo? Please note that:
This is not a question about echo vs. printf.
I ...
4
votes
3answers
547 views
Python: Any way to declare constant parameters?
I have a method:
def foo(bar):
# ...
Is there a way to mark bar as constant? Such as "The value in bar cannot change" or "The object pointed to by bar cannot change".
4
votes
41answers
958 views
On your very first program, which construct hooked you on programming?
To me it was the If statement, I'm psyched up, since then I believed that computers are very intelligent, or I can at least make it appear intelligent because of it.
3
votes
5answers
103 views
Advanced constructs in Javascript
I found one interesting project on github which deals with pdf rendering in the browser.
I tried to read the code because I'm interested in this topic but I realized that my javascript knowledge is ...
3
votes
1answer
153 views
What is a language construct? How (theoreticaly) it is being implemented in C?
I am familiar with how PHP functions are mapped to functions in C in the C code beneath PHP.
I know in C what a function means and what a MACRO() means.
I do not understand what is a language ...
3
votes
3answers
420 views
How to Subtract Bytes on One Line in C#
This is really odd. Can anyone explain this?
This code does NOT work:
const byte ASC_OFFSET = 96;
string Upright = "firefly";
byte c7 = (byte)Upright[6] - ASC_OFFSET;
//Cannot implicitly convert ...
3
votes
4answers
124 views
Is there a language construct similar to PHPs list() in C#?
PHP has a language construct list() which provides multiple variables assignment in one statement.
$a = 0;
$b = 0;
list($a, $b) = array(2, 3);
// Now $a is equal to 2 and $b is equal to 3.
Is there ...
3
votes
3answers
1k views
What is ?: in PHP 5.3? [closed]
Possible Duplicate:
What is the PHP ? : operator called and what does it do?
From http://twitto.org/
<?PHP
require __DIR__.'/c.php';
if (!is_callable($c = @$_GET['c'] ?: function() { ...
2
votes
7answers
264 views
what does this syntax ( page = $page ? $page : 'default' ) in php mean?
i'm new to php. I came across this syntax in wordpress. Can anyone explain to me the last line of that code?
$page = $_SERVER['REQUEST_URI'];
$page = str_replace("/","",$page);
$page = ...
1
vote
2answers
225 views
Why does Scala support shadow variables? [closed]
I think that shadow variables are too dangerous to use them. Why does Scala support this language construct? There should be some strong reason for that, but I cant find it.
1
vote
4answers
126 views
Calling PHP language constructs using a string
I wanna buffer some content. The way how the content is fetched depends, that's why I added a type parameter to my buffer function to define whether to include or to echo the source.
PHP
<?php
...
0
votes
2answers
77 views
What are the basic language constructs in java?
I've been asked to "Identify all language constructs in Java. Your list
should start with classes:
The body of class declarations"
I was under the impression that a 'language construct' was any ...
0
votes
3answers
278 views
if statement on one line if poss
I am printing an image using an ID which is generated. however i wanted to do a check to see if this image exists and if it doesnt print no-image.jpg instead...
<img ...
0
votes
6answers
239 views
Does there exist a shorter if statement in PHP?
Is it possible to rewrite this to be shorter somehow?
if (isset($_POST['pic_action'])){
$pic_action=$_POST['pic_action'];
}
else {
$pic_action=0;
}
I have seen it somewhere but forgot... :/
...
0
votes
9answers
464 views
Is there a programming language that allows variable declaration at call site?
Update 2: examples removed, because they were misleading. The ones below are more relevant.
My question:
Is there a programming language with such a construct?
Update:
Now when I think about it, ...
-2
votes
1answer
65 views
What are the different ways to implement a Singleton Design Pattern in C# based on situations [closed]
What are possible different ways using various language constructs to implement a Singleton pattern in C# and in which situation each solution is used?
What are the advantages and disadvantages of ...