Types, and type systems, are used to enforce levels of abstraction in programs.

learn more… | top users | synonyms (2)

0
votes
3answers
54 views

Why does is declaration of a string variable in Java capitalized?

In Java, when one declares a string variable the word "String" is capitalized, yet it isn't in any of the other types I've run across. Why is this? Was it just some weird arbitrary decision by the ...
4
votes
0answers
54 views

Can the type checker help me out here? With type families, maybe?

So I'm writing this little soccer game for some time now, and there's one thing that bugs me from the very beginning. The game follows the Yampa Arcade pattern, so there's a sum type for the "objects" ...
0
votes
1answer
26 views

Java - Output Type (String, int, char, double)

Probably a very simple question for you guys but one that has been bugging me for the longest time. In my programming class when we are submitting the output of out code we are supposed to have ...
1
vote
2answers
100 views

F# equivalent of `is` keyword in C#?

My first F# day. If I have this: let cat = Animal() Now how do I check at later stage if cat is Animal? In C# bool b = cat is Animal; In F#?
0
votes
2answers
10 views

check variable type inside Jinja2 in Flask

The template file i created contains this: {% if type({'a':1,'b':2}) is dict %} print "Oh Yes!!" {% else %} print "Oh No!!!" {% endif %} Then Jinja2 responds by saying: ...
2
votes
3answers
111 views

Found scala.Unit, required Unit

I have a simple container trait like so: trait Handler { def apply[In, Out](in: In): Out } When I try to implement it: new Handler { def apply[Any, Unit](in: Any) = println(in) } I get an ...
0
votes
0answers
36 views

boost::interprocess::managed_shared_memory > segment as a member

I want this C++: boost::interprocess::managed_shared_memory segment(boost::interprocess::create_only, segment_name, 65536); as a member of (e.g.) a struct (, or a class). C++: typedef struct{ ...
0
votes
2answers
46 views

Obtain Java size of base typed array

I have a method: public int getSize(int[][] input); How can I obtain the size of base typed array ? For example we will pass 3x6 array: getSize(new int[3][6]); How can I return the 6 value ?
0
votes
2answers
36 views

Calling a C function from Python generated by SWIG, with char * output

I'm new to SWIG and if my question is documented, feel free to just post the link and I'll read through it. I have a C function that takes the form: int myFunc(char *output, const char *input) I ...
0
votes
3answers
89 views

How to check if a number is a number when it is a 'string'?

This is a part of a larger program. Here is what I am trying to do. Pass a sentence to the scan method. Have the sentence contain numbers. Split the sentence into it's different terms. append to a ...
0
votes
1answer
26 views

How to return different types in v8

I have not been able to find a general list for returning different types in v8. For instance to return an Number in v8 you would do Handle<Value> some_function(const v8::Arguments& args) { ...
5
votes
2answers
173 views

How is the calculation of types in Haskell

Lets say flip :: (a->b->c) ->b->a->c const ::d->e->d type of (flip const) would be a=d,b=e,c=d in b->a->c so the type would be e->d->d But for ...
0
votes
0answers
14 views

how to redirect a wordpress site with costum post types?

How to redirect domain1.com to domain2.com if domain1.com uses costum post types (domain1.com/articles/simple-post) and domain2.com uses simple wordpress post type. I mean: ...
2
votes
1answer
59 views

C++ mapping a type to its header file [closed]

I am currently developing a simple programming language for easily creating C++ projects. It lets you type in some short C++-like code and generates .h and .cpp files automatically. I need some way ...
1
vote
3answers
71 views

How to get array base type in postgres via jdbc

How to get base type / dimension of an array column in Postgres by Java? I have a tables that contain arrays like int[][] and text[]. When I traverse the metadata from JDBC I can only get type as ...
0
votes
2answers
59 views

Classic ASP Type Mismatch

I'm having some troubles with a Session variable on Classic ASP. On line 19 of the following code, I'm getting a "Type mismatch: 'i'" error debug.asp is a module included in session.asp, another ...
-1
votes
1answer
46 views

Varchar to Numeric conversion error

I have this simple query (SQL Server database) below and I'm not sure why I'm getting an error Error converting data type varchar to numeric. All the data types are decimal. Is my conversion ...
0
votes
2answers
30 views

Specify an input type name?

I'm making a contact form. Now obviously I'll want the message box bigger than the Email and Subject input boxes. So obviously I can't just type in my input in css because it'll change all boxes. I ...
14
votes
3answers
241 views

Difference between class and type

Being new to Java, I'm confused between the concepts of class and type. For example, should the object "Hello World!" belong to the type String or class String? Or maybe both?
1
vote
0answers
8 views

Change open graph type

I specify "video" as the og type at the root of my blog, then realize my mistake and try to change it to "blog". Yet, I read that this is not possible at any cost because the blog has been liked or ...
3
votes
1answer
82 views

How to return an actual instance from a method with a generic return type

I'm having hard time with creating a type safe behavior, I'll use a general example in order to emphasize my issue: I have an interface BoxCreator which is defined by: public interface BoxCreator{ ...
0
votes
1answer
60 views

How to get event name in called method

I am using reflection to add an event handler to an event : var eventInfo = type.GetEvent(eventName); MethodInfo mi = GetType().GetMethod("TestMethod", BindingFlags.Instance | ...
6
votes
1answer
114 views

“Primitive types” versus “built-in value types”

I recently caught an exception in C# while using the Array.SetValue(Int32) method. The exception was: Cannot widen from source type to target type either because the source type is a not a ...
0
votes
1answer
52 views

generate random binary data such 23ABFF

I want to generate binary data the similar to OData binary and I not sure how. the type is defined as Represent fixed- or variable- length binary data binary'[A-Fa-f0-9][A-Fa-f0-9]*' OR X ...
1
vote
1answer
22 views

Is there any way to change og type from article to website without 301 redirect?

Is there any way to change og type from article to website without 301 redirect? I need to change it on main page of my site. Previously my site had og type 'article' I change it to 'website' but ...
2
votes
6answers
116 views

How to restrict a tuple?

I think tuples in Haskell are like tuple :: (a,b) which means a and b can be the same type or can be diffrent types so if i define a function without giving the type for it then i will get ...
0
votes
1answer
22 views

Single template for custom post type don't show single post in wordpress

it's my first time in stack ! I have a probleme with my wordpress code in a single-mycustompost.php file ! I code this : <div id="contenu"> <?php global $post;?> ...
2
votes
2answers
55 views

Type-safer way to implement event driven architecture?

I'm trying to implement a extendable even driven architecture in Java. Unfortunately I can't make it totally type safe. The following is what I did. First I define the event. It's an almost empty ...
-3
votes
0answers
38 views

R datatypes, levels, factors and vectors [closed]

Consider the following R code: raw <- read.csv(fileName, header=TRUE) s <- vector() for(i in 1 : dim(raw)[1]){ s <- c(s, levels(factor(raw[i,]))) } Information: raw is a dataframe ...
0
votes
0answers
87 views

XText Chained Dependencies in Type Inference

In my experiments, it appears that XText cannot resolve variable types when there is a chain of dependencies across multiple XExpression blocks. A minimal example, to illustrate. I have a grammar: ...
0
votes
0answers
14 views

F# type information

this simple function let s = function | [] -> [[]] | list -> []::list has type ('a List List -> 'a List List). Thus, since 'a is generic, it accepts lists af arbitrary depth as ...
0
votes
0answers
27 views

How to describe the complex structure of the table as objects. It need for representing it in html

Task: parse xml -> describe as C# types -> represent as html table Question: the best way to describe as C# types I want describe all information about table such as: ...
0
votes
1answer
25 views

Can Joomla make auto currency to displayed after typing specific format?

I have seen websites that if the user wrote some specific format like this in the back-end for example : Polo Shirt , 500 V-Neck Shirt , 500 Pijamas , 500 Polo Shirt , 750 Jeans , 750 Then in the ...
2
votes
2answers
51 views

C# can a class be aliased (not with 'using')

In Delphi, the following is possible: class Alias = Dictionary<long, object>; Alias is now a dictionary<long, object>. Is this possible in C#? I've never figured out how without having ...
1
vote
4answers
105 views

How to return a 2d array where one dimension is of unknown size?

This is related to this question. I have a function void doConfig(mappings, int& numOfMappings) and I'm not sure how to declare mappings. It is a two dimensional array whose elements are chars. ...
1
vote
2answers
29 views

Ensure string value from JSON response

I have a webservice spitting out JSON responses from the database, which I intend to use in my iPad app. However, depending on the server where the webservice is run, it either casts integers to ...
0
votes
1answer
48 views

Pointer to a function inside a derived type on a module in fortran

I guess I could easily use some help here, since I'm messing around with some fortran 2003 but can't seem to understand how to do things really. The fact is that I need to write a fortran code that ...
6
votes
2answers
129 views

Why does java have Type when it already has Object?

I was hoping that someone could tell me why java has java.lang.reflect.Type, when everything already inherits from Object? Could someone please give an example of a case where I would need to use a ...
2
votes
2answers
164 views
+50

slower to mix logical variables with double?

I have 0-1 valued vectors that I need to do some matrix operations on. They are not very sparse (only half of the values are 0) but saving them as a logical variable instead of double saves 8 times ...
-2
votes
3answers
44 views

style input file button with JS - change text after file chosen

I have an HTML input which I am hiding because I don't like to see "Choose a file". http://jsfiddle.net/tPTxJ/ Codes: <a href="#" onclick="document.getElementById('userFile').click(); return ...
3
votes
3answers
81 views

C#, .net, general programming architecture. GetType or Enum : Which is better? [closed]

Which do you think is better.. if (thing.GetType() == typeof(thisthing)) { //do stuff for this type of thing. } Or give the objects an Enum property if ...
-1
votes
3answers
61 views

Checking a string whether it is string version of oracle raw(16) type field [closed]

Is it possible to check a string in C#, whether it is string version of oracle raw(16) type data? For example, "5D03D47919127C4DBBD58AF69BF4D81A" is string version of a raw(16) type data.
0
votes
2answers
36 views

XSL condition to check if node exists

I want to check if in my XML exists node that has type attribute containing string type_attachment_. Is it a correct way to check it? <xsl:if test="count(*[contains(@Type, 'type_attachment_')]) ...
4
votes
2answers
34 views

Value of 1024 has one bit more in binary representation that value of 1

The output of following code: System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1 ) ) ); System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1024 ) ) ); Is: ...
0
votes
3answers
69 views

For valid DateTime(Error shows string was not recognized )

I am trying to convert my string formated value to date type with format dd/MM/yyyy. It runs fine but when I enter fromdate(dd/MM/yyyy) in textbox its fine and todate(dd/MM/yyyy) in textbox then it ...
0
votes
0answers
50 views

“…cannot be resolved to type” error message; no method suggestions in Eclipse

Ok guys I've got a question that for the life of me I cannot get figured out. I'm using Eclipse, and I've got the Android ADT pluging all installed, the program configured with the Android SDK path, ...
-3
votes
2answers
67 views

Can I modify the type of an object in python

specifically I want to change a StringType to a NoneType. I know how to use int() and str() to convert between IntType and StringType, but I can't find a similar solution for NoneType. Is there a ...
3
votes
1answer
115 views

Convert between any two primitive types in Java

In Java, would it be possible to implement a function that would take an object as input, and then convert the object to a type that is specified as a parameter? I'm trying to implement a ...
3
votes
2answers
186 views

structs, enums, classes, interfaces, anything else?

I was pondering of this while I was writing some helper functions dealing with reflection. Is there anything else besides classes, structs, enums and interfaces in C#? If I write a function that ...
0
votes
1answer
14 views

wordpress custom taxonomy display in post edit screen

I have installed the Custom Post Type UI plugin, and created a new CPT called 'Holidays'. I then created a custom taxonomy called 'Type'. Fine so far and both appear where they should in the menu. ...

1 2 3 4 5 138