0
votes
2answers
21 views
Ocaml Syntax Error
What's wrong with this code? I can't figure it out:
let parent (rules : grammar) (symbol1 : string) (symbol2 : string) : (SymbolSet.t) =
try
SymbolSet.singleton (getParent …
1
vote
3answers
93 views
Is this code Equivalent
I am not a fan of the following construction
if (self = [super init])
{
//do something with self assuming it has been created
}
Is the following equivalent?
self = [super …
2
votes
5answers
139 views
Why Java language does not offer a way to declare getters and setters of a given “field” through annotations ?
I actually happily design and develop JEE Applications for quite 9 years, but I realized recently that as time goes by, I feel more and more fed up of dragging all these ugly bean …
0
votes
0answers
11 views
Retrieving widget data with MySQL query in WordPress
I've built up multiple dynamic sidebars for front page item manipulation. Each sidebar contains a Text widget, and I want to retrieve each widget's content (according to widget ID) …
3
votes
3answers
36 views
PHP DomDocument XML Load with Broken XML Data
Hi,
How do you deal with broken data in XML files? For example, if I had
<text>Some &improper; text here.</text>
I'm trying to do:
$doc = new DOMDocument();
…
4
votes
8answers
219 views
Help me improve this Erlang?
So I'm really interested in Erlang. I can't find an excuse to use it for anything big, but I try to use it for toy problems from time to time.
Right now, I'm implementing a Roman …
5
votes
3answers
195 views
Python-equivalent of short-form “if” in C++
Is there a way to write this C/C++ code in Python?
a = (b == true ? "123" : "456" )
Thanks so much!
0
votes
4answers
72 views
In Python 2.6.4, why do I get a syntax error for a function call, of which the function is defined and works perfectly on its own?
This happens in IDLE and Windows 7 RC1 (if that helps). Here is the module:
from math import *
from TurtleWorld import *
world = TurtleWorld()
bob = Turtle()
bob.delay = 0.1
…
-3
votes
9answers
149 views
please tell me why “else” is a syntax error here.
import java.util.Scanner;
public class SW {
/**
* @param args
*/
public static void main(String[] args) {
int length;
int width;
int number;
int perimeter;
int area;
Scan …
1
vote
3answers
52 views
Different syntax for method invocation in OO languages
I know:
C++, Java, and tons others:
object.method() , object.method(arg)
Objective-C:
[object method] , [object method:arg]
Smalltalk:
object method , object method: arg …
0
votes
9answers
311 views
Is it possible to execute a “C” statement without a semicolon
Post an example to execute a "C" statement without semicolon( ; )
3
votes
9answers
221 views
What is this syntax?
i = 1, 2, 3, 4, 5;
this actually assigns 1 to i.
I wonder if this type of assignment is actually useful somewhere?
Do you know some application of this syntax?
0
votes
5answers
61 views
Buffered Images in java
static BufferedImage img1[];
for(int i=0;i<60;i++)
{
img1[i] = new BufferedImage((int) (width), (int) (height), BufferedImage.TYPE_INT_RGB);
}
It shows an error o …
2
votes
6answers
223 views
This is useful but I’m not sure why it works
protected override Boolean IsValid(String propertyValue)
{
return !String.IsNullOrEmpty(propertyValue) && propertyValue.Trim().Length > 0;
}
This C# validation met …
3
votes
1answer
85 views
Difference between these two syntaxes
type IFooable =
abstract Foo : int -> int
type IFooable2 =
abstract Foo : a : int -> int
type MyClass() =
interface IFooable2 with
member this.Foo(b) = 7
…
