A typechecker enforces that expressions in a given programming language are well typed -- i.e. conform to the rules of a particular type system.

learn more… | top users | synonyms

2
votes
2answers
47 views

Retain class independence or avoid type checking

I'm still a beginner in java, but I try to write good code (obj oriented). However, I'm having a problem with the method removeFromWorld. I several approaches, but whatever I do I seem to break a ...
0
votes
4answers
48 views

Not understanding the bad form of type checking - duck typing

I have a function which needs to behave differently depending on the type of the parameter taken in. My first impulse was to include some calls to isinstance, but I keep seeing answers on ...
1
vote
1answer
81 views

Does std::function() check the type when compiling code in C++11 in VS2010?

I am using std::function() in my code with C++11 and VS2010. Here is my code. function<string (string)> myfunc = 3; myfunc(string()); It is obvious that the code is incorrect ,for the myfunc ...
1
vote
1answer
42 views

Do I need type checking for a C# object factory to call the appropriate methods?

Given the following pseudo C# code: class BigMessage : Message { } class SmallMessage : Message { } abstract class Message { static public Message Factory() { Random random = new ...
5
votes
4answers
255 views

How to generate random, typed functions

I would like to programmatically generate random Haskell functions and evaluate them. It seems to me that the only way to do this is to basically generate Haskell code programatically and run it using ...
4
votes
3answers
150 views

How to check std::string if its indeed an integer?

The following code converts an std::string to int and the problem lies with the fact that it cannot discern from a true integer or just a random string. Is there a systematic method for dealing with ...
0
votes
1answer
27 views

Is it possible to get isinstance or similar type-checking to work with my pickled classes?

I have a really annoying bug, and I've finally tracked it down. I use (or more accurately, already have used) a stand-alone script to create a store of objects, after which I pickle this data ...
0
votes
1answer
69 views

Is it Possible to Enforce Data Checking in MySQL using Regular expression

Suppose I have an attribute called phone number and I would like to enforce certain validity on the entries to this field. Can I use regular expression for this purpose, since Regular Expression is ...
1
vote
1answer
113 views

How do I test if an iterator value has integral type?

While writing a C++ template function, I have to check that the variable type used by this function is integral. If it is the case, it should result in a compilation error. template <class IT> ...
2
votes
2answers
61 views

Why does Scalac type mismatch expect Int?

I was working on a project last night, and had some code like this: /* fixes warnings in 2.10 */ import scala.language.implicitConversions /* had some kind of case class with some members */ case ...
2
votes
1answer
80 views

Pure name equivalence in type checking

I am reading Ravi Sethi's book about the programming language concepts, and there it says int *i1; int *i2; After these declarations, the types of i1 and i2 are not name type compatible. In ...
0
votes
2answers
50 views

What is the behavior when there are mismatched types between an extern declaration and the definition?

Suppose I have two files: ==File1== extern char* foo; ==File2== double foo; These two files seem to compile and link just fine with both g++ and clang++ despite the type mismatch. As I ...
19
votes
2answers
483 views

Haskell/GHC UndecidableInstances - example for non-terminating type check?

I've written some Haskell code which needs -XUndecidableInstances to compile. I do understand why that happens, that there is a certain condition which is violated and therefore GHC yells. However, ...
7
votes
1answer
458 views

Python — Check if object is instance of any class from a certain module

Need a way to check if an object is an instance of any class in some particular module. I know I can do it by explicitly importing every class from that module and checking with a tuple: from ...
0
votes
2answers
51 views

derived classes & type checking

I'm trying to write a method that takes a class derived from std::string as an argument. The method is overloaded with several different function signatures. I'd like compilation to fail if I try to ...
0
votes
1answer
68 views

Check python function signature without a call

My program derives a sequence args and a mapping kwargs from user input. I want to check that input, and then forward it to a python function f (which is chosen based on user input). In this case, ...
2
votes
2answers
249 views

Python raise Error proper use

Description: I've read a lot opinions about checking value type in python and most said that you shouldn't check type, but instead use try and except. I want to make clear few things. Questions: ...
0
votes
1answer
315 views

SML error: operator and operand don't agree when comparing integer in list to an integer

I am new to Standard ML, and can't figure out why I am getting this type mismatch error: fun number_in_month (month : int, dates : int list) = if null ...
0
votes
1answer
90 views

Advantages of Dynamic and Static type checking

Can anyone provide some advantages and disadvantages each; static type checking and dynamic type checking?
1
vote
6answers
176 views

How to check Type before casting in java

I am casting my String variables to integer and double. I want to check whether the String variable contains valid Integer or Double value at runtime. I us following code but it not works for me. ...
0
votes
1answer
53 views

Scala and typecheck for dependent types

Given java classes "abstract Credentials" and deriving "EmailPassword"/"OAuth" classes. and interface CredentialsStorage, with appropriate implementations EmailPasswordStorage and OAuthStorage I ...
2
votes
1answer
77 views

Typedef for indexes in C# with static type checking without runtime overhead

It's pretty common case to use multidimensional arrays with complicated indexing. It's really confusing and error-prone when all indexes are ints because you can easily mix up columns and rows (or ...
0
votes
2answers
66 views

Information about a function's input parameters from within another function

I'm trying to write a general function in MATLAB that takes a function handle as one argument and a path as a second, with optional filters defining which files in the specified folder should be used. ...
3
votes
2answers
99 views

Validation against NumPy dtypes — what's the least circuitous way to check values?

I want to test an unknown value against the constraints that a given NumPy dtype implies -- e.g., if I have an integer value, is it small enough to fit in a uint8? As best I can ascertain, NumPy's ...
5
votes
4answers
562 views

Compiler Design : Is “variable not declared” a syntactic error or semantic error?

Is such type of an error produced during type checking or when input is being parsed? Under what type should the error be addressed?
1
vote
1answer
287 views

Type checking in compilers

I'm currently trying to create a TypeChecker that will successfully type check a MiniJava program. I've been working on it, staring at it, for the past 10 hours, but I have no idea even where to ...
1
vote
4answers
656 views

Type of Function in C or C++

I have a simple question: What is the type of function in C or C++ As we can have pointers to function in C or C++, that means functions should have a specific type otherwise type checking ...
1
vote
1answer
67 views

How can I get type information about expressions in Java files?

By writing an "annotation processor" I can turn any Java text file into an abstract syntax tree and traverse it using a custom visitor (a subclass of TreePathScanner). Unfortunately, as I learned, ...
5
votes
4answers
222 views

What cases do the GHC occurs check identify?

The GHC occurs check prevents you from constructing infinite types. Is it's purpose to prevent common errors in code or to prevent the typechecker from looping indefinitely, or both? What cases does ...
1
vote
1answer
59 views

Parameter checking in constructor

Suppose I have a constructor for an object that takes about 6 parameters, but two or more of the parameters are related, for example: LoanProduct(CurrencySum maxSum, CurrencySum minSum, Interest ...
0
votes
1answer
71 views

Does JavaScript's way of checking type by string comparison affects performance?

Most of JavaScript's type checking is done by string comparison. For example, if (typeof(x)=='undefined') is the only way of checking if a variable was never defined. Does this have consequences on ...
2
votes
3answers
123 views

C++ I have a template class that has a method print() that I need to act differently based on the type

I know the point of templates is to generalize your code, however I would like one specific member function of that class to react differently based on what type of object was created. Specifically I ...
8
votes
3answers
287 views

Inheritance - why is this illegal?

I'm going through a C++ quiz. And came across the following code - it's illegal, but I can't understand why. Can anyone explain why this line: Box* b1 = s1->duplicate(); generates the compiler ...
2
votes
2answers
135 views

How to check currently valid types in Python

Background: Migrating from R to Python with numpy/scipy. Trying to make a little module of useful functions. In particular, I'm trying to create a recursive element-type checker. Question: Is it ...
2
votes
1answer
205 views

Error handling in node.js data access layer

Say I'm using a Repository pattern for data access as below: #userController.coffee # `userId` is obtained from the session user = email: 'Bob' password: 'Secret' db.userRepo(@userId).create ...
0
votes
4answers
126 views

Skip keys without Type checking in Python (pymssql)

I need to access all the non-integer keys for a dict that looks like: result = { 0 : "value 1", 1 : "value 2", "key 1" : "value 1", "key 2" : "value 2", ...
4
votes
4answers
212 views

Why doesn't this function signature typecheck?

Why doesn't extractEither typecheck? data MyEither a b = MyLeft a | MyRight b deriving (Read, Show) extractEither :: MyEither a b -> c extractEither (MyLeft p) = p The ...
1
vote
3answers
77 views

Check in compile time if someClass.class is derived from a anotherClass.class?

this seems to be a newbie question, In Java, how can I check at compile time if someClass.class is derived from a anotherClass.class or at run-time if at compile time is not possible?
1
vote
0answers
78 views

Do .NET Assemblies Cache References To Other Assemblies?

This might sound like an odd question (I've, at least, never had reason to think about it until now), but let me explain my situation. We have a service app that runs on servers on our client's ...
1
vote
1answer
131 views

Scala/Java interop: class type not converted?

The javafx api is defined like this: void addListener(ChangeListener<? super java.lang.Boolean> listener) The following code.. new TextArea().focusedProperty.addListener(new ...
4
votes
1answer
76 views

Does Python raise TypeErrors before short-circuiting a boolean?

I have a function that performs a monthly task on one or more specified days (e.g., the first and the 15th.) For enhanced usability, I want to let users just pass in a single int when they only want ...
1
vote
3answers
375 views

how to accept file or path as arguments to method in python

I am trying to write a method that will accept either an opened file myFile = open("myFile.txt") obj.writeTo(myFile) myFile.close() or a string with a path obj.writeTo("myFile.txt") The method ...
0
votes
3answers
224 views

OOP with type-checking in Lua

I'm trying to implement classes with inheritance in Lua. Additionally, when creating new objects, there needs to be some kind of "type-checking". One particular requirement is to use a specific ...
2
votes
1answer
262 views

How to go about a type checker in prolog?

So I am new to prolog and I am suppose to implement a type checker. How exactly should I go about it? This would be an example: String s; int i; i = s.length(); // OK (example given in the homework) ...
0
votes
0answers
118 views

How to check types in C++ in Qt

I need to check the type of the input being entered by the user and if it is not of desired type, i should print an error message. My code is: int ClassInput::inputInt(QString str) { signed int ...
1
vote
1answer
91 views

Type-checking collections with elements with different traits

Is there any way I can enforce a method returning something along the lines of (in regex notation): (T with A) (T with A with B)+ (T with B) If I return Traversable[T], it drops the bound traits. ...
1
vote
4answers
375 views

Google closure: trouble type checking parameters that should be functions

I'm messing around with the type checking in google's closure compiler. The type system seems useful, if perhaps not the most sophisticated out there. I'm happy with most of the limitations, but ...
1
vote
1answer
52 views

Is there a better way to do type checking when a message is recived over a tcp socket?

At first i was just doing if statements to check the type of the object sent but if you have a bunch of different types of message objects then that can be a real pain. Then i thought and i made a ...
7
votes
3answers
1k views

Check at Compile-Time if Template Argument is void

I'm trying to wrap the Windows API functions to check errors when I so choose. As I found out in a previous SO question, I could use a template function to call the API function, and then call ...
1
vote
1answer
134 views

Type checking fun with function interfaces parameters in VB.Net

Visual Studio seems to stop type checking function parameters when one of the parameters is an interface. Consider the following: ' An interface and the class that implements it: Public Interface ...

1 2 3 4