Construct is a powerful declarative parser for binary data.

learn more… | top users | synonyms

1
vote
1answer
27 views

Java Syntax error on token(s), misplaced construct(s)

im doing a java vending machine os and I've just imported my original project into eclipse and added a guy page and since then its been throwing errors everywhere no mater what i do, can i get some ...
1
vote
1answer
33 views

Java - Ignore default constructor and use constructor with parameters

I am not very well rounded in Java, which is why I am asking this question that is probably very stupid sounding. Nonetheless, I am trying to figure out how to ignore a class's default construct ...
0
votes
3answers
26 views

Codeigniter 2 difference between index and __construct and what to put in __construct

When is __construct called and when is index called? And are there any other differences? And what to put in __construct? Whats the best practice, should I put $this->load calls... ? what else? ...
0
votes
1answer
28 views

Why does my dojo.domConstruct.create command not work?

i want to create a div with the id divNodes1 as a child of a div with the id mobileView. i tried this: alert("before"); var divNodesName = dojo.domConstruct.create("div",{ id: "divNodes1" }, ...
0
votes
1answer
25 views

php - construct by both parent and child

I want to make such thing in php: I want to have the parent class named "item", and a bunch of child classes like "sword", "armor" etc. I can call simply: $some_sword = new sword($id) ; But I also ...
1
vote
1answer
22 views

Adding multiple search variables to construct

I'm writing a search engine and at the moment it searches for only the keywords that are submitted with a heap of other information. How can I ask it to look in other areas? This is what I have: ...
1
vote
1answer
50 views

In C++ templates how do I construct an element of unknown type (T)?

I've been given a template problem where you have to make an element of type T, construct it and then add it to an array. I'm not sure how to do the construct part. Do we just do T element; or T ...
-4
votes
3answers
63 views

Java misplaced constructs [closed]

I recently installed eclipse on my mac and I was fooling around with it in class. I keep getting misplaced construct errors on my first print line and a bunch on syntax error on my main declaration. ...
0
votes
2answers
43 views

redirect is not working in codeigniter _construct function

I am facing a problem using redirect in _construct function, In timesheet controller I wrote the following code and I am getting an error in the browser " This problem can sometimes be caused by ...
0
votes
1answer
50 views

Why __construct method don't work in User Entity in FOSUserBundle?

I am using the FOSUserBundle. This is the User Entity: namespace Shop\UserBundle\Entity; use FOS\UserBundle\Entity\User as BaseUser; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * ...
0
votes
1answer
79 views

NodeJS: extend Class and __construct method

Im migrating my system from PHP to NodeJS, and I have the following doubt: In PHP, I have the class class Users extends Groups { function __construct(){ parent::__construct(); ...
0
votes
1answer
72 views

In python construct library (for parsing binary data), how to group the rest of data as one field?

I am using Python construct library to parse Bluetooth protocols. The link of the library is here As the protocols are really complex, I subdivided the parsing into multiple stages instead of ...
1
vote
1answer
201 views

How to if x in array in golang? [duplicate]

Without iterating over the entire array how can I check if 'x' in array in go? Like python: if "x" in array: ...
1
vote
0answers
111 views

python construct for protocol parsing

I am trying to mix up the power of twisted Protocol with the ductility of construct, the declarative binary data parser. So far, my MessageReceiver protocol accumulates the data coming from the tcp ...
0
votes
2answers
112 views

Database Connection Class constructor

There is a million questions around the topic.. but I haven't seen it exactly like this. I'm just getting started with OOP PHP and all of the information out there is about a car that is red or ...
0
votes
3answers
34 views

php parent constructor in Exception Class

So I was reading the php manual again and saw a comment on the code of a custom exception to call the parent Exception constructor and do not understand the purpose of this. Here is the code: class ...
0
votes
1answer
71 views

PHP OOP constructing class property form method in same class [closed]

For some reason I can't get this to work: <?php class Number{ public $number; public $number_added; public function __construct(){ $this->number_added = ...
-1
votes
3answers
87 views

Unknown Java 7 feature [duplicate]

Possible Duplicate: How are Anonymous (inner) classes used in Java? I just discovered the following feature while reading through Java Puzzlers public class Main { public static void ...
0
votes
0answers
57 views

DomPDF - Cached_PDF_Decorator declaration error

Fatal error: Declaration of Cached_PDF_Decorator::_construct() must be compatible with that of Canvas::_construct() in /my/path/to/cached_pdf_decorator.cls.php on line 22 relevant code in ...
0
votes
0answers
30 views

Trying to upload my construct game to dropbox so it is shown public?

I have completed the construct tutorial shooter game that is an html. According to this link: http://www.scirra.com/tutorials/42/upload-your-game-to-dropbox I am trying to upload the game and make it ...
0
votes
2answers
53 views

__construct($foo = NULL) is not working

I have strange problem. This is just constructor method of class, not worth to show other code, anyway, look at this code: Class xy { public $x = 10; public $y = 10; public function ...
2
votes
2answers
71 views

PHP 'list' working on non-numerical arrays?

$colors = array( 'r' => 'a', 'g' => 'b', 'b' => 'c' ); list($v, $k) = each($colors); echo $v . " " . $k Now the above prints r a which I'm surprise since I thought the ...
0
votes
1answer
234 views

Build tree from edges

I have the edges and i want to build a tree with it. The problem is that i can construct my tree structure only when edges are in specific order. Example of orders: (vertex, parent_vertex) good: ...
1
vote
5answers
396 views

what do we mean by language construct?

I am learning C from 'Programming in C' by Stephen Kochan. Though the author is careful from the beginning only not to confuse the students with jargon, but occasionally he has used few terms without ...
0
votes
2answers
76 views

Which aspects of the JAVA conditional operator construct are described formally, and which are described informally

This question on my courswork that I could not understand. Q. The JAVA Language SpeciïŹcation (3rd Edn.) is available for browsing or downloading at java.sun.com/docs/books/jls/. Locate the section of ...
0
votes
3answers
94 views

Re-writing without using unique construct in SQL

Using the schemas member(memb_no, name, age), book(isbn, title, authors, publisher), and borrowed(memb_no, isbn, date), I have the following query. Only problem is I'm not supposed to use the unique ...
0
votes
2answers
238 views

Python Construct - consume data for optional field

With the Python construct library, the data I'm parsing has a field which only has meaning if a flag is set. However, the data field is always present. Therefore, I would like to consume the data in ...
1
vote
1answer
59 views

X and Y axis doesn' t work on Bada 2.0

I' ve downloaded an example app from Bada documentation, DigitalLocker, and I' ve done and I' m doing some test, I had some problems, but with some help I solved, now I have another problem with X and ...
3
votes
2answers
238 views

Construct parsing for unaligned int field?

I am using this nice little package "construct" for binary data parsing. However, I ran into a case where the format is defined as: 31 24 23 0 +-------------------------+ | status | ...
0
votes
2answers
148 views

C++ equivalent of Python's “construct” library

I'm looking for a library equivalent Python's "construct", maybe somebody has ported it. Construct is a powerful declarative parser for binary data. It is based on the concept of defining ...
4
votes
3answers
189 views

How to implement Haskell *Maybe* construct in D?

I want to implement Maybe from Haskell in D, just for the hell of it. This is what I've got so far, but it's not that great. Any ideas how to improve it? class Maybe(a = int){ } //problem 1: works ...
6
votes
2answers
3k views

init function for structs

I realize that Go does not have classes but pushes the idea of structs instead. Do structs have any sort of initialization function that can be called similar to a __construct() function of a class? ...
1
vote
3answers
404 views

php oop construct optional parameters syntax error

I'm learning php oop, going through books etc and having a go at my own. In my __construct I have a number of parameters that have default values (in fact all of them do). However when I try to write ...
0
votes
1answer
121 views

Can I use two constructor method in PHP?

I have two php files: main.class.php form.class.php in these files there are two class that have same name as their file name and class form extends from main class main class has a constructor How ...
0
votes
2answers
49 views

Creating Objects in itteration - The better approach

As i was developing something, i wondered what might be the better/faster approach to create a bunch of objects while iterating over something. Lets say we have this wrapper-class: public class ...
0
votes
1answer
49 views

PHP inheritance question, freaking me out

Got a question that is freaking me out. Do parent constructors constructs itself without being called? Cause Im seeing it working on a situation and not on the script Im writing. I got the ...
1
vote
1answer
96 views

Echo inside __construct()

How to read variable inside __construct()? Here's the sample code: class Sample { private $test; public function __construct(){ $this->test = "Some text here."; } } $sample = new ...
0
votes
2answers
61 views

When is it more appropriate to assign a new list than to .Clear() an existing list?

Given a list: List<myType> myList = new List<myType>(); with the collection contents modified at runtime.... To clear the list, I have seem examples which suggest using myList = new ...
13
votes
4answers
192 views

What does the Javascript expression 'a = a || function() {…}' mean?

I'm not sure what this construct means but I've seen it a few times. The example below is from another Stack Overflow question. I'm not sure how to interpret the initial "or" construct itself: ...
-1
votes
8answers
229 views

write a C construct

Is there a way (in C) to write a construct like the switch statement, but for strings? Is there a way to write a C construct at all in C? By C construct I mean a statement with braces ... like an if ...
1
vote
3answers
355 views

“Could not execute Model_Hotel::__construct()” with mysql_fetch_object, properties remain uninitialized

I'm running PHP 5.3.6 with MAMP 2.0.1 on Mac OS X Lion and I'm using Kohana 3.1.3.1. I try to override the __set() and __get() methods of the standard Kohana ORM module with my own methods. Some of ...
1
vote
2answers
3k views

Constract JPA query for a OneToMany relation

I've those 2 entities Class A { @OneToMany(mappedBy="a") private List<B> bs; } Class B { @ManyToOne private A a; private String name; } 1) I would like to construct a ...
0
votes
1answer
362 views

Call function inside __construct with php

A simple PHP problem I couldn't find the answer to. Is it possible to call a function from the "__construct()"? For example if I use the My_Controller solution here. If I add my own function below, ...
3
votes
4answers
921 views

Java recreate string from hashcode

Is there any way that I can use a hashcode of a string in java, and recreate that string? e.g. something like this: String myNewstring = StringUtils.createFromHashCode("Hello World".hashCode()); if ...
2
votes
4answers
390 views

Inheritance problem: calling parent construct function in subclass

I have a class named Display which extends class Layout, which extends class DOMDocument. I get: Fatal error: Call to a member function loadHTMLFile() on a non-object. Code as follows: In index.php : ...
0
votes
2answers
45 views

Functions in construct statement

I am just coding something and wanted to know how I can include a function in a construct. if (!formatPhone($phone) && !empty($phone)) { $e = 1; $e_message .= '<li>The phone ...
0
votes
3answers
1k views

PHP: How to call private values of parent construct in child construct?

I want to be able to set a private attribute's value in the parent constructor, and call the value in a child's constructor or method. For example: <?php abstract class MainClass { private ...
2
votes
2answers
238 views

Java equivalent of Python's “construct” library

Is there a Java equivalent of Python's "construct" library? I want to write "structs" like so: message = Struct("message", UBInt8("protocol"), UBInt16("length"), MetaField("data", lambda ...
26
votes
4answers
722 views

What is the rationale behind this code block in java?

What is the rationale behind making this kind of code valid in java? Does it exist for some particular reason or is it just a byproduct of other Java language design decisions? Can't you just use the ...
1
vote
6answers
678 views

PHP: using $this in constructor

I have an idea of using this syntax in php. It illustrates that there are different fallback ways to create an object function __construct() { if(some_case()) $this = method1(); else ...

1 2