A programming language is said to use static typing when type checking is performed during compile-time as opposed to run-time.
1
vote
1answer
73 views
How to implement a type system with clojure core.logic
I read in the interview with Rich Hickey that he would be interested in "using logic systems in place of a type system for Clojure". I also bumped into this statement in a SO answer, ...
1
vote
2answers
62 views
Resolving the types of functions in external modules
Suppose we have an imaginary statically typed programming language - let's call it SL. Each SL file corresponds to a module - SL's logical grouping of related functions into namespaces.
Calls to ...
15
votes
3answers
491 views
To what extent is C++ a statically-typed language?
I used to think that the answer to this question was "100%", but I've recently been pointed to an example that makes it worth thinking twice. Consider a C array declared as an object with automatic ...
0
votes
2answers
54 views
Are there any good libraries for interpreting java language?
In lot of cases there is no need for classes to be explicitly compiled(i.e. running unit tests - I want them to be just runnable, not necessarily to be compiled & packaged).
I'm curious if there ...
0
votes
1answer
46 views
Can I say that in languages with Dynamic Type Binding all variable are allocated on a heap?
I am studying about the binding process and the classification of variable based on storage binding. So, I faced with four kind of variable:
Static variables: these are bound to memory before ...
0
votes
2answers
113 views
Can this be done with static typing?
This method attempts to select a (std::vector<?>) based on a key (std::string), where ? is either int or float:
template<typename L>
inline void ...
1
vote
1answer
65 views
Represent a set of functions and their typing rules
I would like to represent a set of functions and their typing rules, and am thinking of the data structure... For instance,
For function "PLUS":
PLUS-integer: Integer -> Integer -> Integer, ...
2
votes
2answers
471 views
TypeScript: problems with type system
I'm just testing typescript in VisualStudio 2012 and have a problem with its type system. My html site has a canvas tag with the id "mycanvas". I'm trying to draw a rectangle on this canvas. Here's ...
2
votes
1answer
76 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
0answers
23 views
Statically Typed Languages - A variable in a program may be associated with values of multiple types during the execution of the program
In Java, a statically typed language, a reference to an object of a parent type can point to an object of the child type too. Is this a correct illustration of the above statement?
If it isn't, could ...
2
votes
2answers
167 views
Imperative languages with static, structural typing and global type inference
I know of languages like Haskell being statically typed and having type inference. But are there non-functional languages that have global type inference, the equivalent of something like C with type ...
-1
votes
2answers
154 views
Advantages of static typing? [closed]
I'm not claiming static typing is best, just wondering what advantages it really has. I thought they were:
faster code
catching some errors early
Looking at my own use (in Java), I'm mostly ...
0
votes
1answer
50 views
Do you lose Static Typing ability while using a #DEFINE statement?
I seem to be losing static typing ability when defining,
#define myAppDelegate (WorkClockAppDelegate *) [[UIApplication sharedApplication] delegate]
To do this,
[myAppDelegate doSomething];
...
1
vote
4answers
175 views
Definition of statically typed and dynamically types
Which of these two definitions is correct?
Statically typed - Type matching is checked at compile time (and therefore can only be applied to compiled languages)
Dynamically typed - Type matching is ...
15
votes
1answer
493 views
Comparison of Scala (latest 2.10) versus Groovy++ (latest 0.9.1?) [closed]
I've just watched a video of the Groovy inventor, James Strachan, in which he goes on quite passionately about loving Scala. That caused me to want to find out more about Groovy which lead me to ...
3
votes
2answers
317 views
is this an example of weak typing or dynamic typing
Is the quality of a language where it's not required to declare a variables type (such as PHP and Perl) known as weak typing or dynamic typing? I'm having trouble getting my head around the two terms. ...
2
votes
2answers
151 views
Statically Typing a Scripting Language in Java
I'm building a scripting language in Java for a game, and I'm currently working on the parser. The language is to be utilized by players/modders/myself to create custom spells and effects. However, ...
1
vote
1answer
431 views
Haskell type signature with multiple class constraints
How can I have multiple class constraints, so if A is an Eq and B is a Num, I could say either f :: Eq a => a -> b or f :: Num b => a -> b.
So, how can I have Eq a => and Num b => ...
0
votes
2answers
76 views
Python module for statically typed class attributes
I want my Python class to automatically check the type of value when assigning it to an attribute.
There is enthought's traits module and IPython has a pure python version as its sub module ...
2
votes
7answers
311 views
A language that satisfies this criteria?
I have done some Java programming and very little C and PHP programming as well. Recently I started to learn Python because the language seemed interesting.
But several posts on SO seemed to point ...
2
votes
2answers
142 views
Is there a statically-typed language that works on both the JVM and CLR?
I am writing code that I want to eventually execute on the PC, Xbox, and Android platforms, and if possible also Mac and Linux. Instead of rewriting it for each platform, I'd like to write it once in ...
3
votes
2answers
280 views
Common Lisp type declarations not working as expected
When I define a function in Common Lisp like this:
(defun foo (n)
(declare (type fixnum n))
(+ n 42))
I expected a call like (foo "a") to fail right away but it instead fail at the call to +. ...
2
votes
1answer
202 views
Would optional static typing benefit Python API-design or be a disadvantage? (type checking decorator example included)
I'm a long time Python developer and I really love the dynamic nature of the language, but I wonder if Python would benefit from optional static typing.
Would it be beneficial to be able to apply ...
3
votes
1answer
279 views
Why does this code declare a DISTINCT type?
ShlObj.pas line 9922 (as in Delphi XE):
type
BFFCALLBACK = function(Wnd: HWND; uMsg: UINT; lParam, lpData: LPARAM): Integer stdcall;
TFNBFFCallBack = type BFFCALLBACK;
{$EXTERNALSYM ...
3
votes
5answers
716 views
are there statically-typed functional languages?
this is a hard thing to google, maybe SO has better answers?
i'm coming from a statically-typed background and investigating functional programming, but i'm not entirely excited about dynamic typing. ...
4
votes
5answers
358 views
When is runtime type checking ok and when is it a bad design? [closed]
Usually, a mention of checking the type of a variable at runtime results in a comment about bad design. Sometimes it seems like it can't be avoided. I would like to see examples of when runtime type ...
2
votes
2answers
153 views
OCaml: find value of specific type
I have the list of some values where I need to find out which kind of value is first:
type my_types =
| MAlpha
| MBeta of int list
| MGamma of string * int
let find_first where what =
...
25
votes
3answers
2k views
Is there a Haskell idiom for updating a nested data structure?
Let's say I have the following data model, for keeping track of the stats of baseball players, teams, and coaches:
data BBTeam = BBTeam { teamname :: String,
manager :: Coach,
...
9
votes
2answers
254 views
Why do web development frameworks tend to work around the static features of languages?
I was a little surprised when I started using Lift how heavily it uses reflection (or appears to), it was a little unexpected in a statically-typed functional language. My experience with JSP was ...
11
votes
2answers
325 views
Is Java-style Groovy as fast as Java?
If I understand correctly Groovy is dynamically typed but since it's almost a superset of Java, static type information may optionally be provided. This could be useful if writing something where ...
12
votes
2answers
784 views
what is statically typed in RPython?
It is often stated that RPython (a subset of Python) is statically typed. (E.g. on Wikipedia.)
Initially, I wondered how they would add that to Python and thought that they might have added the ...
1
vote
2answers
1k views
Generic Stacks methods
I am creating this stack class with the following methods as shown .
import java.util.ArrayList;
import java.util.EmptyStackException;
public class SortableStack<E extends ...
3
votes
8answers
1k views
Python type checking [duplicate]
Possible Duplicate:
Tools for static type checking in Python
For most part I love the fact that you can pick up any type and drop it where you like in Python and just let the Duck typing ...
5
votes
1answer
150 views
clojure sequence type
What's the correct type of a sequence? I have this code:
(defrecord MethodInfo [^clojure.lang.ISeq preconds ^clojure.lang.ISeq postconds])
But it doesn't seem to correctly enforce the type ...
6
votes
7answers
819 views
What can we do with generics in Java to make them look better:
I have this method to transform a List to a Map using one of the properties of the elements of the list:
For short it looks like this:
private Map<String, List<Diagnostic<? extends ...
2
votes
2answers
132 views
Why can't i declare a field using var [duplicate]
Possible Duplicate:
Why class fields cannot be var?
I'd like to avoid typing out complex/long type definitions for fields like you can with local variables.
I'd like to know why this ...
4
votes
5answers
261 views
Testing whether some data is of some type or not in Haskell?
since Haskell has such expressive type system, is there something supported directly that we can query whether some data is of some type? like in Racket, (String? "Hi") (will return true)
or like ...
10
votes
3answers
3k views
Tools for static type checking in Python
I'm working with a large existing Python codebase and would like to start adding in type annotations so I can get some level of static checking. I'm imagining something like Erlang, Strongtalk, or ...
10
votes
6answers
2k views
Is float slower than double? Does 64 bit program run faster than 32 bit program?
Is using float type slower than using double type?
I heard that modern Intel and AMD CPUs can do calculations with doubles faster than with floats.
What about standard math functions (sqrt, pow, ...
8
votes
5answers
459 views
Why interfaces must be declared in Java?
Sometimes we have several classes that have some methods with the same signature, but that don't correspond to a declared Java interface. For example, both JTextField and JButton (among several others ...
2
votes
1answer
640 views
Closure with typed arguments in Groovy
I'd like to be more explicit about my closures regarding their argument types. So I would write something like
Y myCollect(List<X> list, Closure<X,Y> clos) { ... }
I know that Groovy ...
5
votes
1answer
324 views
Should Scala's map() behave differently when mapping to the same type?
In the Scala Collections framework, I think there are some behaviors that are counterintuitive when using map().
We can distinguish two kinds of transformations on (immutable) collections. Those ...
2
votes
2answers
223 views
How can I ensure that the dynamic type of my custom Scala collection is preserved during a map()?
I read the very interesting article on the architecture of the Scala 2.8 collections and I've been experimenting with it a little bit. For a start, I simply copied the final code for the nice RNA ...
5
votes
4answers
316 views
Statically typed open source cross platform modern programming language
May be it's a silly question. Is there an alternative to Java and .NET platform?
Which:
Is a programming language itself. Language ports unless they become dominant are not really successfull IMO.
...
9
votes
3answers
320 views
Tired of non-semantic testing to make up for dynamic typing - suggestions?
I used to do a lot of web programming in Rails (PHP before that) before I started studying computer engineering.
Since then, I've done a lot of school work in C, and some personal stuff in ...
8
votes
2answers
378 views
What does “no global type inference” mean regarding Scala?
I have read that Scala's type inference is not global so that is why people must place type annotations on the methods. (Would this be "local" type inference?)
I only a little understand that the ...
3
votes
3answers
852 views
Clojure static typing, part 2
This is a follow-up to my previous question on Clojure static typing.
I browsed the Java source code for the compiler and there are several places where it checks the value of *warn-on-reflection*, ...
15
votes
5answers
3k views
Clojure static typing
I know that this may sound like blasphemy to Lisp aficionados (and other lovers of dynamic languages), but how difficult would it be to enhance the Clojure compiler to support static (compile-time) ...
-1
votes
3answers
69 views
Explicitly statically typed programming langagues
I am curious.
I am interested in knowing if any languages exist like C++ and Java, in that the langauge is:
(a) Explicitly (ie. not by inference) statically typed, (b) Object Oriented.
I am aware of ...
2
votes
5answers
214 views
How do statically-typed languages deal without generics?
I'm curious which statically-typed languages have no generics support
(and to a lesser extent which languages historically did not have generics), and how they deal with it.
Do users just cast all ...
